Show / Hide Table of Contents

Class CfnDeploymentMixinProps

Properties for CfnDeploymentPropsMixin.

Inheritance
object
CfnDeploymentMixinProps
Implements
ICfnDeploymentMixinProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.ApiGatewayV2.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDeploymentMixinProps : ICfnDeploymentMixinProps
Syntax (vb)
Public Class CfnDeploymentMixinProps Implements ICfnDeploymentMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.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.Mixins.Preview.AWS.ApiGatewayV2.Mixins;

             var cfnDeploymentMixinProps = new CfnDeploymentMixinProps {
                 ApiId = "apiId",
                 Description = "description",
                 StageName = "stageName"
             };

Synopsis

Constructors

CfnDeploymentMixinProps()

Properties for CfnDeploymentPropsMixin.

Properties

ApiId

The API identifier.

Description

The description for the deployment resource.

StageName

The name of an existing stage to associate with the deployment.

Constructors

CfnDeploymentMixinProps()

Properties for CfnDeploymentPropsMixin.

public CfnDeploymentMixinProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.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.Mixins.Preview.AWS.ApiGatewayV2.Mixins;

             var cfnDeploymentMixinProps = new CfnDeploymentMixinProps {
                 ApiId = "apiId",
                 Description = "description",
                 StageName = "stageName"
             };

Properties

ApiId

The API identifier.

public string? ApiId { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-apiid

Description

The description for the deployment resource.

public string? Description { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-description

StageName

The name of an existing stage to associate with the deployment.

public string? StageName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-apigatewayv2-deployment.html#cfn-apigatewayv2-deployment-stagename

Implements

ICfnDeploymentMixinProps
Back to top Generated by DocFX