Show / Hide Table of Contents

Class CfnFunction.RequestParameterProperty

Inheritance
object
CfnFunction.RequestParameterProperty
Implements
CfnFunction.IRequestParameterProperty
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.RequestParameterProperty : CfnFunction.IRequestParameterProperty
Syntax (vb)
Public Class CfnFunction.RequestParameterProperty Implements CfnFunction.IRequestParameterProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-requestparameter.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 requestParameterProperty = new RequestParameterProperty {
                 Caching = false,
                 Required = false
             };

Synopsis

Constructors

RequestParameterProperty()

Properties

Caching
Required

Constructors

RequestParameterProperty()

public RequestParameterProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-serverless-function-requestparameter.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 requestParameterProperty = new RequestParameterProperty {
                 Caching = false,
                 Required = false
             };

Properties

Caching

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

object

Remarks

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

Type union: either bool or IResolvable

Required

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

object

Remarks

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

Type union: either bool or IResolvable

Implements

CfnFunction.IRequestParameterProperty
Back to top Generated by DocFX