interface SslConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.OpsWorks.CfnApp.SslConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#CfnApp_SslConfigurationProperty |
Java | software.amazon.awscdk.services.opsworks.CfnApp.SslConfigurationProperty |
Python | aws_cdk.aws_opsworks.CfnApp.SslConfigurationProperty |
TypeScript | aws-cdk-lib » aws_opsworks » CfnApp » SslConfigurationProperty |
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_opsworks as opsworks } from 'aws-cdk-lib';
const sslConfigurationProperty: opsworks.CfnApp.SslConfigurationProperty = {
certificate: 'certificate',
chain: 'chain',
privateKey: 'privateKey',
};
Properties
Name | Type | Description |
---|---|---|
certificate? | string | The contents of the certificate's domain.crt file. |
chain? | string | Optional. |
private | string | The private key; |
certificate?
Type:
string
(optional)
The contents of the certificate's domain.crt file.
chain?
Type:
string
(optional)
Optional.
Can be used to specify an intermediate certificate authority key or client authentication.
privateKey?
Type:
string
(optional)
The private key;
the contents of the certificate's domain.kex file.