Show / Hide Table of Contents

Interface CfnConnection.IConnectionHttpParametersProperty

Any additional parameters for the connection.

Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IConnectionHttpParametersProperty
Syntax (vb)
Public Interface CfnConnection.IConnectionHttpParametersProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectionhttpparameters.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.Events;

             var connectionHttpParametersProperty = new ConnectionHttpParametersProperty {
                 BodyParameters = new [] { new ParameterProperty {
                     Key = "key",
                     Value = "value",

                     // the properties below are optional
                     IsValueSecret = false
                 } },
                 HeaderParameters = new [] { new ParameterProperty {
                     Key = "key",
                     Value = "value",

                     // the properties below are optional
                     IsValueSecret = false
                 } },
                 QueryStringParameters = new [] { new ParameterProperty {
                     Key = "key",
                     Value = "value",

                     // the properties below are optional
                     IsValueSecret = false
                 } }
             };

Synopsis

Properties

BodyParameters

Any additional body string parameters for the connection.

HeaderParameters

Any additional header parameters for the connection.

QueryStringParameters

Any additional query string parameters for the connection.

Properties

BodyParameters

Any additional body string parameters for the connection.

object? BodyParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectionhttpparameters.html#cfn-events-connection-connectionhttpparameters-bodyparameters

Type union: either IResolvable or (either IResolvable or CfnConnection.IParameterProperty)[]

HeaderParameters

Any additional header parameters for the connection.

object? HeaderParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectionhttpparameters.html#cfn-events-connection-connectionhttpparameters-headerparameters

Type union: either IResolvable or (either IResolvable or CfnConnection.IParameterProperty)[]

QueryStringParameters

Any additional query string parameters for the connection.

object? QueryStringParameters { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-events-connection-connectionhttpparameters.html#cfn-events-connection-connectionhttpparameters-querystringparameters

Type union: either IResolvable or (either IResolvable or CfnConnection.IParameterProperty)[]

Back to top Generated by DocFX