Interface CfnConnection.IParameterProperty
Any additional query string parameter for the connection.
Namespace: Amazon.CDK.AWS.Events
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnConnection.IParameterProperty
Syntax (vb)
Public Interface CfnConnection.IParameterProperty
Remarks
You can include up to 100 additional query string parameters per request. Each additional parameter counts towards the event payload size, which cannot exceed 64 KB.
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 parameterProperty = new ParameterProperty {
Key = "key",
Value = "value",
// the properties below are optional
IsValueSecret = false
};
Synopsis
Properties
| IsValueSecret | Specifies whether the value is secret. |
| Key | The key for a query string parameter. |
| Value | The value associated with the key for the query string parameter. |
Properties
IsValueSecret
Specifies whether the value is secret.
object? IsValueSecret { get; }
Property Value
Remarks
Default: - true
Type union: either bool or IResolvable
Key
The key for a query string parameter.
string Key { get; }
Property Value
Remarks
Value
The value associated with the key for the query string parameter.
string Value { get; }