Table of Contents

Interface ICfnClientCertificateProps

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

Properties for defining a CfnClientCertificate.

public interface ICfnClientCertificateProps

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

Properties

Description

The description of the client certificate.

string? Description { get; }

Property Value

string

Remarks

Tags

The collection of tags.

ICfnTag[]? Tags { get; }

Property Value

ICfnTag[]

Remarks