Interface ClientTlsCertificate.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ClientTlsCertificate.Builder,ClientTlsCertificate>,SdkBuilder<ClientTlsCertificate.Builder,ClientTlsCertificate>,SdkPojo
- Enclosing class:
- ClientTlsCertificate
public static interface ClientTlsCertificate.Builder extends SdkPojo, CopyableBuilder<ClientTlsCertificate.Builder,ClientTlsCertificate>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClientTlsCertificate.Builderfile(Consumer<ListenerTlsFileCertificate.Builder> file)An object that represents a local file certificate.ClientTlsCertificate.Builderfile(ListenerTlsFileCertificate file)An object that represents a local file certificate.default ClientTlsCertificate.Buildersds(Consumer<ListenerTlsSdsCertificate.Builder> sds)A reference to an object that represents a client's TLS Secret Discovery Service certificate.ClientTlsCertificate.Buildersds(ListenerTlsSdsCertificate sds)A reference to an object that represents a client's TLS Secret Discovery Service certificate.-
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
-
file
ClientTlsCertificate.Builder file(ListenerTlsFileCertificate file)
An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).
- Parameters:
file- An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
file
default ClientTlsCertificate.Builder file(Consumer<ListenerTlsFileCertificate.Builder> file)
An object that represents a local file certificate. The certificate must meet specific requirements and you must have proxy authorization enabled. For more information, see Transport Layer Security (TLS).
This is a convenience method that creates an instance of theListenerTlsFileCertificate.Builderavoiding the need to create one manually viaListenerTlsFileCertificate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tofile(ListenerTlsFileCertificate).- Parameters:
file- a consumer that will call methods onListenerTlsFileCertificate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
file(ListenerTlsFileCertificate)
-
sds
ClientTlsCertificate.Builder sds(ListenerTlsSdsCertificate sds)
A reference to an object that represents a client's TLS Secret Discovery Service certificate.
- Parameters:
sds- A reference to an object that represents a client's TLS Secret Discovery Service certificate.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sds
default ClientTlsCertificate.Builder sds(Consumer<ListenerTlsSdsCertificate.Builder> sds)
A reference to an object that represents a client's TLS Secret Discovery Service certificate.
This is a convenience method that creates an instance of theListenerTlsSdsCertificate.Builderavoiding the need to create one manually viaListenerTlsSdsCertificate.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed tosds(ListenerTlsSdsCertificate).- Parameters:
sds- a consumer that will call methods onListenerTlsSdsCertificate.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
sds(ListenerTlsSdsCertificate)
-
-