interface ObjectAttributeProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.CustomerProfiles.CfnEventTriggerPropsMixin.ObjectAttributeProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awscustomerprofiles#CfnEventTriggerPropsMixin_ObjectAttributeProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.customerprofiles.CfnEventTriggerPropsMixin.ObjectAttributeProperty |
Python | aws_cdk.cfn_property_mixins.aws_customerprofiles.CfnEventTriggerPropsMixin.ObjectAttributeProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_customerprofiles » 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 { aws_customerprofiles as customerprofiles } from '@aws-cdk/cfn-property-mixins';
const objectAttributeProperty: customerprofiles.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