Show / Hide Table of Contents

Class CfnAppPropsMixin.SslConfigurationProperty

Inheritance
object
CfnAppPropsMixin.SslConfigurationProperty
Implements
CfnAppPropsMixin.ISslConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html

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

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfiguration-certificate

Chain

Optional.

public string? Chain { get; set; }
Property Value

string

Remarks

Can be used to specify an intermediate certificate authority key or client authentication.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfiguration-chain

PrivateKey

The private key;

public string? PrivateKey { get; set; }
Property Value

string

Remarks

the contents of the certificate's domain.kex file.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-opsworks-app-sslconfiguration.html#cfn-opsworks-app-sslconfiguration-privatekey

Implements

CfnAppPropsMixin.ISslConfigurationProperty
Back to top Generated by DocFX