Show / Hide Table of Contents

Class ApiCorsConfigurationGetArgs

Inheritance
System.Object
InputArgs
ResourceArgs
ApiCorsConfigurationGetArgs
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.ApiGatewayV2.Inputs
Assembly: Pulumi.Aws.dll
Syntax
public sealed class ApiCorsConfigurationGetArgs : ResourceArgs

Constructors

View Source

ApiCorsConfigurationGetArgs()

Declaration
public ApiCorsConfigurationGetArgs()

Properties

View Source

AllowCredentials

Whether credentials are included in the CORS request.

Declaration
public Input<bool> AllowCredentials { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

AllowHeaders

The set of allowed HTTP headers.

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

AllowMethods

The set of allowed HTTP methods.

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

AllowOrigins

The set of allowed origins.

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

ExposeHeaders

The set of exposed HTTP headers.

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

MaxAge

The number of seconds that the browser should cache preflight request results.

Declaration
public Input<int> MaxAge { get; set; }
Property Value
Type Description
Input<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.