HttpActionHeader

class aws_cdk.aws_iot_actions_alpha.HttpActionHeader(*, key, value)

Bases: object

Parameters:
  • key (str) – (experimental) The HTTP header key.

  • value (str) – (experimental) The HTTP header value. Substitution templates are supported.

Stability:

experimental

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
import aws_cdk.aws_iot_actions_alpha as iot_actions_alpha

http_action_header = iot_actions_alpha.HttpActionHeader(
    key="key",
    value="value"
)

Attributes

key

(experimental) The HTTP header key.

Stability:

experimental

value

(experimental) The HTTP header value.

Substitution templates are supported.

Stability:

experimental