@Stability(value=Stable)
public static interface CfnApp.SslConfigurationProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.opsworks.*;
SslConfigurationProperty sslConfigurationProperty = SslConfigurationProperty.builder()
.certificate("certificate")
.chain("chain")
.privateKey("privateKey")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnApp.SslConfigurationProperty.Builder
A builder for
CfnApp.SslConfigurationProperty |
static class |
CfnApp.SslConfigurationProperty.Jsii$Proxy
An implementation for
CfnApp.SslConfigurationProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnApp.SslConfigurationProperty.Builder |
builder() |
default String |
getCertificate()
The contents of the certificate's domain.crt file.
|
default String |
getChain()
Optional.
|
default String |
getPrivateKey()
The private key;
|
@Stability(value=Stable) @Nullable default String getCertificate()
@Stability(value=Stable) @Nullable default String getChain()
Can be used to specify an intermediate certificate authority key or client authentication.
@Stability(value=Stable) @Nullable default String getPrivateKey()
the contents of the certificate's domain.kex file.
@Stability(value=Stable) static CfnApp.SslConfigurationProperty.Builder builder()
Copyright © 2022. All rights reserved.