Interface AddHeaderActionConfig
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
AddHeaderActionConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:41.328Z")
@Stability(Stable)
public interface AddHeaderActionConfig
extends software.amazon.jsii.JsiiSerializable
AddHeaderAction configuration.
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.ses.*; AddHeaderActionConfig addHeaderActionConfig = AddHeaderActionConfig.builder() .headerName("headerName") .headerValue("headerValue") .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forAddHeaderActionConfig
static final class
An implementation forAddHeaderActionConfig
-
Method Summary
Modifier and TypeMethodDescriptionbuilder()
The name of the header that you want to add to the incoming message.The content that you want to include in the header.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getHeaderName
The name of the header that you want to add to the incoming message. -
getHeaderValue
The content that you want to include in the header. -
builder
- Returns:
- a
AddHeaderActionConfig.Builder
ofAddHeaderActionConfig
-