Table of Contents

Interface ICfnDocumentationVersionProps

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

Properties for defining a CfnDocumentationVersion.

public interface ICfnDocumentationVersionProps

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 cfnDocumentationVersionProps = new CfnDocumentationVersionProps {
                 DocumentationVersion = "documentationVersion",
                 RestApiId = "restApiId",

                 // the properties below are optional
                 Description = "description"
             };

Remarks

Properties

Description

A description about the new documentation snapshot.

string? Description { get; }

Property Value

string

Remarks

DocumentationVersion

The version identifier of the to-be-updated documentation version.

string DocumentationVersion { get; }

Property Value

string

Remarks

RestApiId

The string identifier of the associated RestApi.

string RestApiId { get; }

Property Value

string

Remarks