Table of Contents

Class CfnClientCertificateProps

Namespace
Amazon.CDK.AWS.APIGateway
Assembly
Amazon.CDK.AWS.APIGateway.dll

Properties for defining a CfnClientCertificate.

public class CfnClientCertificateProps : ICfnClientCertificateProps
Inheritance
CfnClientCertificateProps
Implements
Inherited Members

Examples

// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.APIGateway;

             var cfnClientCertificateProps = new CfnClientCertificateProps {
                 Description = "description",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Remarks

Constructors

CfnClientCertificateProps()

public CfnClientCertificateProps()

Properties

Description

The description of the client certificate.

public string? Description { get; set; }

Property Value

string

Remarks

Tags

The collection of tags.

public ICfnTag[]? Tags { get; set; }

Property Value

ICfnTag[]

Remarks