Class CfnAppPropsMixin.SslConfigurationProperty
Implements
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnAppPropsMixin.SslConfigurationProperty : CfnAppPropsMixin.ISslConfigurationProperty
Syntax (vb)
Public Class CfnAppPropsMixin.SslConfigurationProperty Implements CfnAppPropsMixin.ISslConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins;
var sslConfigurationProperty = new SslConfigurationProperty {
Certificate = "certificate",
Chain = "chain",
PrivateKey = "privateKey"
};
Synopsis
Constructors
| SslConfigurationProperty() |
Properties
| Certificate | The contents of the certificate's domain.crt file. |
| Chain | Optional. |
| PrivateKey | The private key; |
Constructors
SslConfigurationProperty()
public SslConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.OpsWorks.Mixins;
var sslConfigurationProperty = new SslConfigurationProperty {
Certificate = "certificate",
Chain = "chain",
PrivateKey = "privateKey"
};
Properties
Certificate
The contents of the certificate's domain.crt file.
public string? Certificate { get; set; }
Property Value
Remarks
Chain
Optional.
public string? Chain { get; set; }
Property Value
Remarks
Can be used to specify an intermediate certificate authority key or client authentication.
PrivateKey
The private key;
public string? PrivateKey { get; set; }
Property Value
Remarks
the contents of the certificate's domain.kex file.