interface ResponseElements
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.IoTAnalytics.Events.AWSAPICallViaCloudTrail.ResponseElements |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsiotanalytics/events#AWSAPICallViaCloudTrail_ResponseElements |
Java | software.amazon.awscdk.mixins.preview.services.iotanalytics.events.AWSAPICallViaCloudTrail.ResponseElements |
Python | aws_cdk.mixins_preview.aws_iotanalytics.events.AWSAPICallViaCloudTrail.ResponseElements |
TypeScript | @aws-cdk/mixins-preview ยป aws_iotanalytics ยป events ยป AWSAPICallViaCloudTrail ยป ResponseElements |
Type definition for ResponseElements.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { events as iotanalytics_events } from '@aws-cdk/mixins-preview/aws-iotanalytics';
const responseElements: iotanalytics_events.AWSAPICallViaCloudTrail.ResponseElements = {
channelArn: ['channelArn'],
channelName: ['channelName'],
datasetArn: ['datasetArn'],
datasetName: ['datasetName'],
datastoreArn: ['datastoreArn'],
datastoreIndexArn: ['datastoreIndexArn'],
datastoreIndexName: ['datastoreIndexName'],
datastoreName: ['datastoreName'],
pipelineArn: ['pipelineArn'],
pipelineName: ['pipelineName'],
reprocessingId: ['reprocessingId'],
retentionPeriod: {
numberOfDays: ['numberOfDays'],
unlimited: ['unlimited'],
},
versionId: ['versionId'],
};
Properties
| Name | Type | Description |
|---|---|---|
| channel | string[] | channelArn property. |
| channel | string[] | channelName property. |
| dataset | string[] | datasetArn property. |
| dataset | string[] | datasetName property. |
| datastore | string[] | datastoreArn property. |
| datastore | string[] | datastoreIndexArn property. |
| datastore | string[] | datastoreIndexName property. |
| datastore | string[] | datastoreName property. |
| pipeline | string[] | pipelineArn property. |
| pipeline | string[] | pipelineName property. |
| reprocessing | string[] | reprocessingId property. |
| retention | Retention | retentionPeriod property. |
| version | string[] | versionId property. |
channelArn?
Type:
string[]
(optional, default: Do not filter on this field)
channelArn property.
Specify an array of string values to match this event if the actual value of channelArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
channelName?
Type:
string[]
(optional, default: Do not filter on this field)
channelName property.
Specify an array of string values to match this event if the actual value of channelName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datasetArn?
Type:
string[]
(optional, default: Do not filter on this field)
datasetArn property.
Specify an array of string values to match this event if the actual value of datasetArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datasetName?
Type:
string[]
(optional, default: Do not filter on this field)
datasetName property.
Specify an array of string values to match this event if the actual value of datasetName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreArn?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreArn property.
Specify an array of string values to match this event if the actual value of datastoreArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreIndexArn?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreIndexArn property.
Specify an array of string values to match this event if the actual value of datastoreIndexArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreIndexName?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreIndexName property.
Specify an array of string values to match this event if the actual value of datastoreIndexName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
datastoreName?
Type:
string[]
(optional, default: Do not filter on this field)
datastoreName property.
Specify an array of string values to match this event if the actual value of datastoreName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
pipelineArn?
Type:
string[]
(optional, default: Do not filter on this field)
pipelineArn property.
Specify an array of string values to match this event if the actual value of pipelineArn is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
pipelineName?
Type:
string[]
(optional, default: Do not filter on this field)
pipelineName property.
Specify an array of string values to match this event if the actual value of pipelineName is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
reprocessingId?
Type:
string[]
(optional, default: Do not filter on this field)
reprocessingId property.
Specify an array of string values to match this event if the actual value of reprocessingId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
retentionPeriod?
Type:
Retention
(optional, default: Do not filter on this field)
retentionPeriod property.
Specify an array of string values to match this event if the actual value of retentionPeriod is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.
versionId?
Type:
string[]
(optional, default: Do not filter on this field)
versionId property.
Specify an array of string values to match this event if the actual value of versionId is one of the values in the array. Use one of the constructors on the aws_events.Match for more advanced matching options.

.NET
Go
Java
Python
TypeScript