interface ObjectAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.CustomerProfiles.Mixins.CfnEventTriggerPropsMixin.ObjectAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awscustomerprofiles/mixins#CfnEventTriggerPropsMixin_ObjectAttributeProperty |
Java | software.amazon.awscdk.mixins.preview.services.customerprofiles.mixins.CfnEventTriggerPropsMixin.ObjectAttributeProperty |
Python | aws_cdk.mixins_preview.aws_customerprofiles.mixins.CfnEventTriggerPropsMixin.ObjectAttributeProperty |
TypeScript | @aws-cdk/mixins-preview » aws_customerprofiles » mixins » CfnEventTriggerPropsMixin » ObjectAttributeProperty |
The criteria that a specific object attribute must meet to trigger the destination.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as customerprofiles_mixins } from '@aws-cdk/mixins-preview/aws-customerprofiles';
const objectAttributeProperty: customerprofiles_mixins.CfnEventTriggerPropsMixin.ObjectAttributeProperty = {
comparisonOperator: 'comparisonOperator',
fieldName: 'fieldName',
source: 'source',
values: ['values'],
};
Properties
| Name | Type | Description |
|---|---|---|
| comparison | string | The operator used to compare an attribute against a list of values. |
| field | string | A field defined within an object type. |
| source? | string | An attribute contained within a source object. |
| values? | string[] | The amount of time of the specified unit. |
comparisonOperator?
Type:
string
(optional)
The operator used to compare an attribute against a list of values.
fieldName?
Type:
string
(optional)
A field defined within an object type.
source?
Type:
string
(optional)
An attribute contained within a source object.
values?
Type:
string[]
(optional)
The amount of time of the specified unit.

.NET
Go
Java
Python
TypeScript