Show / Hide Table of Contents

Class DeploymentState

Inheritance
System.Object
InputArgs
ResourceArgs
DeploymentState
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 DeploymentState : ResourceArgs

Constructors

View Source

DeploymentState()

Declaration
public DeploymentState()

Properties

View Source

CreatedDate

The creation date of the deployment

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

Description

The description of the deployment

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

ExecutionArn

The execution ARN to be used in lambda_permission resource's source_arn when allowing API Gateway to invoke a Lambda function, e.g. arn:aws:execute-api:eu-west-2:123456789012:z4675bid1j/prod

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

InvokeUrl

The URL to invoke the API pointing to the stage, e.g. https://z4675bid1j.execute-api.eu-west-2.amazonaws.com/prod

Declaration
public Input<string> InvokeUrl { 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.