Interface ICfnDeploymentProps
Properties for defining a CfnDeployment
.
Namespace: Amazon.CDK.AWS.Apigatewayv2
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface ICfnDeploymentProps
Syntax (vb)
Public Interface ICfnDeploymentProps
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.AWS.Apigatewayv2;
var cfnDeploymentProps = new CfnDeploymentProps {
ApiId = "apiId",
// the properties below are optional
Description = "description",
StageName = "stageName"
};
Synopsis
Properties
Api |
The API identifier. |
Description | The description for the deployment resource. |
Stage |
The name of an existing stage to associate with the deployment. |
Properties
ApiId
The API identifier.
string ApiId { get; }
Property Value
System.
Remarks
Description
The description for the deployment resource.
virtual string Description { get; }
Property Value
System.
Remarks
StageName
The name of an existing stage to associate with the deployment.
virtual string StageName { get; }
Property Value
System.