HttpAttribute
- class aws_cdk.aws_kinesisfirehose.HttpAttribute(*, name, value)
Bases:
objectDescribes the metadata sent to the Http endpoint destination.
- Parameters:
name (
str) – The name of the Http endpoint common attribute.value (
str) – The value of the Http endpoint common attribute.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_kinesisfirehose as kinesisfirehose http_attribute = kinesisfirehose.HttpAttribute( name="name", value="value" )
Attributes
- name
The name of the Http endpoint common attribute.
- value
The value of the Http endpoint common attribute.