Show / Hide Table of Contents

Class CfnDocumentationVersionProps

Properties for defining a CfnDocumentationVersion.

Inheritance
System.Object
CfnDocumentationVersionProps
Implements
ICfnDocumentationVersionProps
Namespace: Amazon.CDK.AWS.APIGateway
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDocumentationVersionProps : Object, ICfnDocumentationVersionProps
Syntax (vb)
Public Class CfnDocumentationVersionProps
    Inherits Object
    Implements ICfnDocumentationVersionProps
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.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.AWS.APIGateway;

var cfnDocumentationVersionProps = new CfnDocumentationVersionProps {
    DocumentationVersion = "documentationVersion",
    RestApiId = "restApiId",

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

Synopsis

Constructors

CfnDocumentationVersionProps()

Properties

Description

A description about the new documentation snapshot.

DocumentationVersion

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

RestApiId

The string identifier of the associated RestApi.

Constructors

CfnDocumentationVersionProps()

public CfnDocumentationVersionProps()

Properties

Description

A description about the new documentation snapshot.

public string Description { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-description

DocumentationVersion

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

public string DocumentationVersion { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-documentationversion

RestApiId

The string identifier of the associated RestApi.

public string RestApiId { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigateway-documentationversion.html#cfn-apigateway-documentationversion-restapiid

Implements

ICfnDocumentationVersionProps
Back to top Generated by DocFX