Show / Hide Table of Contents

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.

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

object

Remarks

Default: - true

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

Type union: either bool or IResolvable

Key

The key for a query string parameter.

string Key { get; }
Property Value

string

Remarks

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

Value

The value associated with the key for the query string parameter.

string Value { get; }
Property Value

string

Remarks

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

Back to top Generated by DocFX