Class CfnDocumentationVersionProps
- Namespace
- Amazon.CDK.AWS.APIGateway
- Assembly
- Amazon.CDK.AWS.APIGateway.dll
Properties for defining a CfnDocumentationVersion
.
public class CfnDocumentationVersionProps : ICfnDocumentationVersionProps
- Inheritance
-
CfnDocumentationVersionProps
- 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 cfnDocumentationVersionProps = new CfnDocumentationVersionProps {
DocumentationVersion = "documentationVersion",
RestApiId = "restApiId",
// the properties below are optional
Description = "description"
};
Remarks
ExampleMetadata: fixture=_generated
Constructors
CfnDocumentationVersionProps()
public CfnDocumentationVersionProps()
Properties
Description
A description about the new documentation snapshot.
public string? Description { get; set; }
Property Value
Remarks
DocumentationVersion
The version identifier of the to-be-updated documentation version.
public string DocumentationVersion { get; set; }
Property Value
Remarks
RestApiId
The string identifier of the associated RestApi.
public string RestApiId { get; set; }