interface DataProcessorIdentifier
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.KinesisFirehose.DataProcessorIdentifier |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awskinesisfirehose#DataProcessorIdentifier |
Java | software.amazon.awscdk.services.kinesisfirehose.DataProcessorIdentifier |
Python | aws_cdk.aws_kinesisfirehose.DataProcessorIdentifier |
TypeScript (source) | aws-cdk-lib » aws_kinesisfirehose » DataProcessorIdentifier |
The key-value pair that identifies the underlying processor resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_kinesisfirehose as kinesisfirehose } from 'aws-cdk-lib';
const dataProcessorIdentifier: kinesisfirehose.DataProcessorIdentifier = {
parameterName: 'parameterName',
parameterValue: 'parameterValue',
};
Properties
| Name | Type | Description |
|---|---|---|
| parameter | string | The parameter name that corresponds to the processor resource's identifier. |
| parameter | string | The identifier of the underlying processor resource. |
parameterName
Type:
string
The parameter name that corresponds to the processor resource's identifier.
Must be an accepted value in CfnDeliveryStream.ProcessoryParameterProperty.ParameterName.
parameterValue
Type:
string
The identifier of the underlying processor resource.

.NET
Go
Java
Python
TypeScript (