Interface DataProcessorIdentifier
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
DataProcessorIdentifier.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.087Z")
@Stability(Experimental)
public interface DataProcessorIdentifier
extends software.amazon.jsii.JsiiSerializable
(experimental) 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 software.amazon.awscdk.services.kinesisfirehose.*; DataProcessorIdentifier dataProcessorIdentifier = DataProcessorIdentifier.builder() .parameterName("parameterName") .parameterValue("parameterValue") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forDataProcessorIdentifier
static final class
An implementation forDataProcessorIdentifier
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
(experimental) The parameter name that corresponds to the processor resource's identifier.(experimental) The identifier of the underlying processor resource.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getParameterName
(experimental) The parameter name that corresponds to the processor resource's identifier.Must be an accepted value in
CfnDeliveryStream.ProcessoryParameterProperty.ParameterName
. -
getParameterValue
(experimental) The identifier of the underlying processor resource. -
builder
- Returns:
- a
DataProcessorIdentifier.Builder
ofDataProcessorIdentifier
-