Interface Tls.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<Tls.Builder,Tls>
,SdkBuilder<Tls.Builder,Tls>
,SdkPojo
- Enclosing class:
- Tls
public static interface Tls.Builder extends SdkPojo, CopyableBuilder<Tls.Builder,Tls>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Tls.Builder
certificateAuthorityArnList(String... certificateAuthorityArnList)
List of ACM Certificate Authority ARNs.Tls.Builder
certificateAuthorityArnList(Collection<String> certificateAuthorityArnList)
List of ACM Certificate Authority ARNs.Tls.Builder
enabled(Boolean enabled)
Specifies whether you want to turn on or turn off TLS authentication.-
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
-
certificateAuthorityArnList
Tls.Builder certificateAuthorityArnList(Collection<String> certificateAuthorityArnList)
List of ACM Certificate Authority ARNs.
- Parameters:
certificateAuthorityArnList
-List of ACM Certificate Authority ARNs.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
certificateAuthorityArnList
Tls.Builder certificateAuthorityArnList(String... certificateAuthorityArnList)
List of ACM Certificate Authority ARNs.
- Parameters:
certificateAuthorityArnList
-List of ACM Certificate Authority ARNs.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
enabled
Tls.Builder enabled(Boolean enabled)
Specifies whether you want to turn on or turn off TLS authentication.
- Parameters:
enabled
-Specifies whether you want to turn on or turn off TLS authentication.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-