DataProcessorIdentifier

class aws_cdk.aws_kinesisfirehose_alpha.DataProcessorIdentifier(*, parameter_name, parameter_value)

Bases: object

(experimental) The key-value pair that identifies the underlying processor resource.

Parameters:
  • parameter_name (str) – (experimental) The parameter name that corresponds to the processor resource’s identifier. Must be an accepted value in CfnDeliveryStream.ProcessoryParameterProperty.ParameterName.

  • parameter_value (str) – (experimental) The identifier of the underlying processor resource.

See:

http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-kinesisfirehose-deliverystream-processorparameter.html

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_kinesisfirehose_alpha as kinesisfirehose_alpha

data_processor_identifier = kinesisfirehose_alpha.DataProcessorIdentifier(
    parameter_name="parameterName",
    parameter_value="parameterValue"
)

Attributes

parameter_name

(experimental) The parameter name that corresponds to the processor resource’s identifier.

Must be an accepted value in CfnDeliveryStream.ProcessoryParameterProperty.ParameterName.

Stability:

experimental

parameter_value

(experimental) The identifier of the underlying processor resource.

Stability:

experimental