Class CfnDeploymentMixinProps
Properties for CfnDeploymentPropsMixin.
Implements
Inherited Members
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
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
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
Remarks
Description
The description for the deployment resource.
public string? Description { get; set; }
Property Value
Remarks
StageName
The name of an existing stage to associate with the deployment.
public string? StageName { get; set; }