Show / Hide Table of Contents

Class DeploymentArgs

Inheritance
System.Object
InputArgs
ResourceArgs
DeploymentArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.ApiGateway
Assembly: Pulumi.Aws.dll
Syntax
public sealed class DeploymentArgs : ResourceArgs

Constructors

View Source

DeploymentArgs()

Declaration
public DeploymentArgs()

Properties

View Source

Description

The description of the deployment

Declaration
public Input<string> Description { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RestApi

The ID of the associated REST API

Declaration
public Input<string> RestApi { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StageDescription

The description of the stage

Declaration
public Input<string> StageDescription { get; set; }
Property Value
Type Description
Input<System.String>
View Source

StageName

The name of the stage. If the specified stage already exists, it will be updated to point to the new deployment. If the stage does not exist, a new one will be created and point to this deployment.

Declaration
public Input<string> StageName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Triggers

A map of arbitrary keys and values that, when changed, will trigger a redeployment.

Declaration
public InputMap<string> Triggers { get; set; }
Property Value
Type Description
InputMap<System.String>
View Source

Variables

A map that defines variables for the stage

Declaration
public InputMap<string> Variables { get; set; }
Property Value
Type Description
InputMap<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.