Show / Hide Table of Contents

Class CfnFunction.FunctionUrlConfigProperty

Inheritance
object
CfnFunction.FunctionUrlConfigProperty
Implements
CfnFunction.IFunctionUrlConfigProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SAM
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnFunction.FunctionUrlConfigProperty : CfnFunction.IFunctionUrlConfigProperty
Syntax (vb)
Public Class CfnFunction.FunctionUrlConfigProperty Implements CfnFunction.IFunctionUrlConfigProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-functionurlconfig.html

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.SAM;

             var functionUrlConfigProperty = new FunctionUrlConfigProperty {
                 AuthType = "authType",

                 // the properties below are optional
                 Cors = "cors",
                 InvokeMode = "invokeMode"
             };

Synopsis

Constructors

FunctionUrlConfigProperty()

Properties

AuthType
Cors
InvokeMode

Constructors

FunctionUrlConfigProperty()

public FunctionUrlConfigProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-functionurlconfig.html

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.SAM;

             var functionUrlConfigProperty = new FunctionUrlConfigProperty {
                 AuthType = "authType",

                 // the properties below are optional
                 Cors = "cors",
                 InvokeMode = "invokeMode"
             };

Properties

AuthType

public string AuthType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-functionurlconfig.html#cfn-serverless-function-functionurlconfig-authtype

Cors

public object? Cors { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-functionurlconfig.html#cfn-serverless-function-functionurlconfig-cors

InvokeMode

public string? InvokeMode { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-functionurlconfig.html#cfn-serverless-function-functionurlconfig-invokemode

Implements

CfnFunction.IFunctionUrlConfigProperty
Back to top Generated by DocFX