aws-cdk-lib.aws_opsworks.CfnApp.SslConfigurationProperty

interface SslConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.OpsWorks.CfnApp.SslConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsopsworks#CfnApp_SslConfigurationProperty
Javasoftware.amazon.awscdk.services.opsworks.CfnApp.SslConfigurationProperty
Pythonaws_cdk.aws_opsworks.CfnApp.SslConfigurationProperty
TypeScript aws-cdk-lib » aws_opsworks » CfnApp » SslConfigurationProperty

Describes an app's SSL configuration.

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

NameTypeDescription
certificate?stringThe contents of the certificate's domain.crt file.
chain?stringOptional.
privateKey?stringThe 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.