Interface CfnConnection.IConnectionHttpParametersProperty
Any additional parameters for the connection.
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IConnectionHttpParametersProperty
Syntax (vb)
Public Interface IConnectionHttpParametersProperty
Remarks
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
Body |
Any additional body string parameters for the connection. |
Header |
Any additional header parameters for the connection. |
Query |
Any additional query string parameters for the connection. |
Properties
BodyParameters
Any additional body string parameters for the connection.
virtual object BodyParameters { get; }
Property Value
System.
Remarks
HeaderParameters
Any additional header parameters for the connection.
virtual object HeaderParameters { get; }
Property Value
System.
Remarks
QueryStringParameters
Any additional query string parameters for the connection.
virtual object QueryStringParameters { get; }
Property Value
System.