public static interface SslPolicy.Builder extends SdkPojo, CopyableBuilder<SslPolicy.Builder,SslPolicy>
Modifier and Type | Method and Description |
---|---|
SslPolicy.Builder |
ciphers(Cipher... ciphers)
The ciphers.
|
SslPolicy.Builder |
ciphers(Collection<Cipher> ciphers)
The ciphers.
|
SslPolicy.Builder |
ciphers(Consumer<Cipher.Builder>... ciphers)
The ciphers.
|
SslPolicy.Builder |
name(String name)
The name of the policy.
|
SslPolicy.Builder |
sslProtocols(Collection<String> sslProtocols)
The protocols.
|
SslPolicy.Builder |
sslProtocols(String... sslProtocols)
The protocols.
|
copy
applyMutation, build
SslPolicy.Builder sslProtocols(Collection<String> sslProtocols)
The protocols.
sslProtocols
- The protocols.SslPolicy.Builder sslProtocols(String... sslProtocols)
The protocols.
sslProtocols
- The protocols.SslPolicy.Builder ciphers(Collection<Cipher> ciphers)
The ciphers.
ciphers
- The ciphers.SslPolicy.Builder ciphers(Cipher... ciphers)
The ciphers.
ciphers
- The ciphers.SslPolicy.Builder ciphers(Consumer<Cipher.Builder>... ciphers)
The ciphers.
This is a convenience that creates an instance of theList.Builder
avoiding the need to
create one manually via List#builder()
.
When the Consumer
completes, List.Builder#build()
is called immediately and its
result is passed to #ciphers(List)
.ciphers
- a consumer that will call methods on List.Builder
#ciphers(List)
SslPolicy.Builder name(String name)
The name of the policy.
name
- The name of the policy.Copyright © 2017 Amazon Web Services, Inc. All Rights Reserved.