interface SelectAttributesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Mixins.CfnPipelinePropsMixin.SelectAttributesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/mixins#CfnPipelinePropsMixin_SelectAttributesProperty |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.mixins.CfnPipelinePropsMixin.SelectAttributesProperty |
Python | aws_cdk.mixins_preview.aws_iotanalytics.mixins.CfnPipelinePropsMixin.SelectAttributesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_iotanalytics » mixins » CfnPipelinePropsMixin » SelectAttributesProperty |
Creates a new message using only the specified attributes from the original message.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as iotanalytics_mixins } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const selectAttributesProperty: iotanalytics_mixins.CfnPipelinePropsMixin.SelectAttributesProperty = {
attributes: ['attributes'],
name: 'name',
next: 'next',
};
Properties
| Name | Type | Description |
|---|---|---|
| attributes? | string[] | A list of the attributes to select from the message. |
| name? | string | The name of the 'selectAttributes' activity. |
| next? | string | The next activity in the pipeline. |
attributes?
Type:
string[]
(optional)
A list of the attributes to select from the message.
name?
Type:
string
(optional)
The name of the 'selectAttributes' activity.
next?
Type:
string
(optional)
The next activity in the pipeline.

.NET
Go
Java
Python
TypeScript