@Stability(value=Stable)
public static interface CfnPipeline.AddAttributesProperty
extends software.amazon.jsii.JsiiSerializable
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.iotanalytics.*;
AddAttributesProperty addAttributesProperty = AddAttributesProperty.builder()
.attributes(Map.of(
"attributesKey", "attributes"))
.name("name")
// the properties below are optional
.next("next")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnPipeline.AddAttributesProperty.Builder
A builder for
CfnPipeline.AddAttributesProperty |
static class |
CfnPipeline.AddAttributesProperty.Jsii$Proxy
An implementation for
CfnPipeline.AddAttributesProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnPipeline.AddAttributesProperty.Builder |
builder() |
Object |
getAttributes()
A list of 1-50 "AttributeNameMapping" objects that map an existing attribute to a new attribute.
|
String |
getName()
The name of the 'addAttributes' activity.
|
default String |
getNext()
The next activity in the pipeline.
|
@Stability(value=Stable) @NotNull Object getAttributes()
The existing attributes remain in the message, so if you want to remove the originals, use "RemoveAttributeActivity".
@Stability(value=Stable) @NotNull String getName()
@Stability(value=Stable) @Nullable default String getNext()
@Stability(value=Stable) static CfnPipeline.AddAttributesProperty.Builder builder()
Copyright © 2022. All rights reserved.