Source code for troposphere.customerprofiles

# Copyright (c) 2012-2025, Mark Peek <mark@peek.org>
# All rights reserved.
#
# See LICENSE file for full license.
#
# *** Do not modify - this file is autogenerated ***


from . import AWSObject, AWSProperty, PropsDictType, Tags
from .validators import boolean, double, integer


[docs]class AttributeItem(AWSProperty): """ `AttributeItem <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-attributeitem.html>`__ """ props: PropsDictType = { "Name": (str, True), }
[docs]class AttributeDetails(AWSProperty): """ `AttributeDetails <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-attributedetails.html>`__ """ props: PropsDictType = { "Attributes": ([AttributeItem], True), "Expression": (str, True), }
[docs]class ValueRange(AWSProperty): """ `ValueRange <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-valuerange.html>`__ """ props: PropsDictType = { "End": (integer, True), "Start": (integer, True), }
[docs]class Range(AWSProperty): """ `Range <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-range.html>`__ """ props: PropsDictType = { "TimestampFormat": (str, False), "TimestampSource": (str, False), "Unit": (str, True), "Value": (integer, False), "ValueRange": (ValueRange, False), }
[docs]class Threshold(AWSProperty): """ `Threshold <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-threshold.html>`__ """ props: PropsDictType = { "Operator": (str, True), "Value": (str, True), }
[docs]class Conditions(AWSProperty): """ `Conditions <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-calculatedattributedefinition-conditions.html>`__ """ props: PropsDictType = { "ObjectCount": (integer, False), "Range": (Range, False), "Threshold": (Threshold, False), }
[docs]class CalculatedAttributeDefinition(AWSObject): """ `CalculatedAttributeDefinition <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-calculatedattributedefinition.html>`__ """ resource_type = "AWS::CustomerProfiles::CalculatedAttributeDefinition" props: PropsDictType = { "AttributeDetails": (AttributeDetails, True), "CalculatedAttributeName": (str, True), "Conditions": (Conditions, False), "Description": (str, False), "DisplayName": (str, False), "DomainName": (str, True), "Statistic": (str, True), "Tags": (Tags, False), "UseHistoricalData": (boolean, False), }
[docs]class Readiness(AWSProperty): """ `Readiness <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-readiness.html>`__ """ props: PropsDictType = { "Message": (str, False), "ProgressPercentage": (integer, False), }
[docs]class DataStore(AWSProperty): """ `DataStore <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-datastore.html>`__ """ props: PropsDictType = { "Enabled": (boolean, False), "Readiness": (Readiness, False), }
[docs]class ConflictResolution(AWSProperty): """ `ConflictResolution <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-conflictresolution.html>`__ """ props: PropsDictType = { "ConflictResolvingModel": (str, True), "SourceName": (str, False), }
[docs]class Consolidation(AWSProperty): """ `Consolidation <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-consolidation.html>`__ """ props: PropsDictType = { "MatchingAttributesList": (dict, True), }
[docs]class AutoMerging(AWSProperty): """ `AutoMerging <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-automerging.html>`__ """ props: PropsDictType = { "ConflictResolution": (ConflictResolution, False), "Consolidation": (Consolidation, False), "Enabled": (boolean, True), "MinAllowedConfidenceScoreForMerging": (double, False), }
[docs]class S3ExportingConfig(AWSProperty): """ `S3ExportingConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-s3exportingconfig.html>`__ """ props: PropsDictType = { "S3BucketName": (str, True), "S3KeyName": (str, False), }
[docs]class ExportingConfig(AWSProperty): """ `ExportingConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-exportingconfig.html>`__ """ props: PropsDictType = { "S3Exporting": (S3ExportingConfig, False), }
[docs]class JobSchedule(AWSProperty): """ `JobSchedule <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-jobschedule.html>`__ """ props: PropsDictType = { "DayOfTheWeek": (str, True), "Time": (str, True), }
[docs]class Matching(AWSProperty): """ `Matching <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-matching.html>`__ """ props: PropsDictType = { "AutoMerging": (AutoMerging, False), "Enabled": (boolean, True), "ExportingConfig": (ExportingConfig, False), "JobSchedule": (JobSchedule, False), }
[docs]class AttributeTypesSelector(AWSProperty): """ `AttributeTypesSelector <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-attributetypesselector.html>`__ """ props: PropsDictType = { "Address": ([str], False), "AttributeMatchingModel": (str, True), "EmailAddress": ([str], False), "PhoneNumber": ([str], False), }
[docs]class MatchingRule(AWSProperty): """ `MatchingRule <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-matchingrule.html>`__ """ props: PropsDictType = { "Rule": ([str], True), }
[docs]class RuleBasedMatching(AWSProperty): """ `RuleBasedMatching <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-rulebasedmatching.html>`__ """ props: PropsDictType = { "AttributeTypesSelector": (AttributeTypesSelector, False), "ConflictResolution": (ConflictResolution, False), "Enabled": (boolean, True), "ExportingConfig": (ExportingConfig, False), "MatchingRules": ([MatchingRule], False), "MaxAllowedRuleLevelForMatching": (integer, False), "MaxAllowedRuleLevelForMerging": (integer, False), "Status": (str, False), }
[docs]class Domain(AWSObject): """ `Domain <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-domain.html>`__ """ resource_type = "AWS::CustomerProfiles::Domain" props: PropsDictType = { "DataStore": (DataStore, False), "DeadLetterQueueUrl": (str, False), "DefaultEncryptionKey": (str, False), "DefaultExpirationDays": (integer, True), "DomainName": (str, True), "Matching": (Matching, False), "RuleBasedMatching": (RuleBasedMatching, False), "Tags": (Tags, False), }
[docs]class EventStream(AWSObject): """ `EventStream <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-eventstream.html>`__ """ resource_type = "AWS::CustomerProfiles::EventStream" props: PropsDictType = { "DomainName": (str, True), "EventStreamName": (str, True), "Tags": (Tags, False), "Uri": (str, True), }
[docs]class ObjectAttribute(AWSProperty): """ `ObjectAttribute <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-objectattribute.html>`__ """ props: PropsDictType = { "ComparisonOperator": (str, True), "FieldName": (str, False), "Source": (str, False), "Values": ([str], True), }
[docs]class EventTriggerDimension(AWSProperty): """ `EventTriggerDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggerdimension.html>`__ """ props: PropsDictType = { "ObjectAttributes": ([ObjectAttribute], True), }
[docs]class EventTriggerCondition(AWSProperty): """ `EventTriggerCondition <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggercondition.html>`__ """ props: PropsDictType = { "EventTriggerDimensions": ([EventTriggerDimension], True), "LogicalOperator": (str, True), }
[docs]class Period(AWSProperty): """ `Period <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-period.html>`__ """ props: PropsDictType = { "MaxInvocationsPerProfile": (integer, False), "Unit": (str, True), "Unlimited": (boolean, False), "Value": (integer, True), }
[docs]class EventTriggerLimits(AWSProperty): """ `EventTriggerLimits <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventtrigger-eventtriggerlimits.html>`__ """ props: PropsDictType = { "EventExpiration": (integer, False), "Periods": ([Period], False), }
[docs]class EventTrigger(AWSObject): """ `EventTrigger <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-eventtrigger.html>`__ """ resource_type = "AWS::CustomerProfiles::EventTrigger" props: PropsDictType = { "Description": (str, False), "DomainName": (str, True), "EventTriggerConditions": ([EventTriggerCondition], True), "EventTriggerLimits": (EventTriggerLimits, False), "EventTriggerName": (str, True), "ObjectTypeName": (str, True), "SegmentFilter": (str, False), "Tags": (Tags, False), }
[docs]class IncrementalPullConfig(AWSProperty): """ `IncrementalPullConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-incrementalpullconfig.html>`__ """ props: PropsDictType = { "DatetimeTypeFieldName": (str, False), }
[docs]class MarketoSourceProperties(AWSProperty): """ `MarketoSourceProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-marketosourceproperties.html>`__ """ props: PropsDictType = { "Object": (str, True), }
[docs]class S3SourceProperties(AWSProperty): """ `S3SourceProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-s3sourceproperties.html>`__ """ props: PropsDictType = { "BucketName": (str, True), "BucketPrefix": (str, False), }
[docs]class SalesforceSourceProperties(AWSProperty): """ `SalesforceSourceProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-salesforcesourceproperties.html>`__ """ props: PropsDictType = { "EnableDynamicFieldUpdate": (boolean, False), "IncludeDeletedRecords": (boolean, False), "Object": (str, True), }
[docs]class ServiceNowSourceProperties(AWSProperty): """ `ServiceNowSourceProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-servicenowsourceproperties.html>`__ """ props: PropsDictType = { "Object": (str, True), }
[docs]class ZendeskSourceProperties(AWSProperty): """ `ZendeskSourceProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-zendesksourceproperties.html>`__ """ props: PropsDictType = { "Object": (str, True), }
[docs]class SourceConnectorProperties(AWSProperty): """ `SourceConnectorProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-sourceconnectorproperties.html>`__ """ props: PropsDictType = { "Marketo": (MarketoSourceProperties, False), "S3": (S3SourceProperties, False), "Salesforce": (SalesforceSourceProperties, False), "ServiceNow": (ServiceNowSourceProperties, False), "Zendesk": (ZendeskSourceProperties, False), }
[docs]class SourceFlowConfig(AWSProperty): """ `SourceFlowConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-sourceflowconfig.html>`__ """ props: PropsDictType = { "ConnectorProfileName": (str, False), "ConnectorType": (str, True), "IncrementalPullConfig": (IncrementalPullConfig, False), "SourceConnectorProperties": (SourceConnectorProperties, True), }
[docs]class ConnectorOperator(AWSProperty): """ `ConnectorOperator <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-connectoroperator.html>`__ """ props: PropsDictType = { "Marketo": (str, False), "S3": (str, False), "Salesforce": (str, False), "ServiceNow": (str, False), "Zendesk": (str, False), }
[docs]class TaskPropertiesMap(AWSProperty): """ `TaskPropertiesMap <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-taskpropertiesmap.html>`__ """ props: PropsDictType = { "OperatorPropertyKey": (str, True), "Property": (str, True), }
[docs]class Task(AWSProperty): """ `Task <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-task.html>`__ """ props: PropsDictType = { "ConnectorOperator": (ConnectorOperator, False), "DestinationField": (str, False), "SourceFields": ([str], True), "TaskProperties": ([TaskPropertiesMap], False), "TaskType": (str, True), }
[docs]class ScheduledTriggerProperties(AWSProperty): """ `ScheduledTriggerProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-scheduledtriggerproperties.html>`__ """ props: PropsDictType = { "DataPullMode": (str, False), "FirstExecutionFrom": (double, False), "ScheduleEndTime": (double, False), "ScheduleExpression": (str, True), "ScheduleOffset": (integer, False), "ScheduleStartTime": (double, False), "Timezone": (str, False), }
[docs]class TriggerProperties(AWSProperty): """ `TriggerProperties <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-triggerproperties.html>`__ """ props: PropsDictType = { "Scheduled": (ScheduledTriggerProperties, False), }
[docs]class TriggerConfig(AWSProperty): """ `TriggerConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-triggerconfig.html>`__ """ props: PropsDictType = { "TriggerProperties": (TriggerProperties, False), "TriggerType": (str, True), }
[docs]class FlowDefinition(AWSProperty): """ `FlowDefinition <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-flowdefinition.html>`__ """ props: PropsDictType = { "Description": (str, False), "FlowName": (str, True), "KmsArn": (str, True), "SourceFlowConfig": (SourceFlowConfig, True), "Tasks": ([Task], True), "TriggerConfig": (TriggerConfig, True), }
[docs]class ObjectTypeMapping(AWSProperty): """ `ObjectTypeMapping <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-integration-objecttypemapping.html>`__ """ props: PropsDictType = { "Key": (str, True), "Value": (str, True), }
[docs]class Integration(AWSObject): """ `Integration <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-integration.html>`__ """ resource_type = "AWS::CustomerProfiles::Integration" props: PropsDictType = { "DomainName": (str, True), "EventTriggerNames": ([str], False), "FlowDefinition": (FlowDefinition, False), "ObjectTypeName": (str, False), "ObjectTypeNames": ([ObjectTypeMapping], False), "Scope": (str, False), "Tags": (Tags, False), "Uri": (str, False), }
[docs]class ObjectTypeField(AWSProperty): """ `ObjectTypeField <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypefield.html>`__ """ props: PropsDictType = { "ContentType": (str, False), "Source": (str, False), "Target": (str, False), }
[docs]class FieldMap(AWSProperty): """ `FieldMap <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-fieldmap.html>`__ """ props: PropsDictType = { "Name": (str, False), "ObjectTypeField": (ObjectTypeField, False), }
[docs]class ObjectTypeKey(AWSProperty): """ `ObjectTypeKey <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-objecttypekey.html>`__ """ props: PropsDictType = { "FieldNames": ([str], False), "StandardIdentifiers": ([str], False), }
[docs]class KeyMap(AWSProperty): """ `KeyMap <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-objecttype-keymap.html>`__ """ props: PropsDictType = { "Name": (str, False), "ObjectTypeKeyList": ([ObjectTypeKey], False), }
[docs]class ObjectType(AWSObject): """ `ObjectType <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-objecttype.html>`__ """ resource_type = "AWS::CustomerProfiles::ObjectType" props: PropsDictType = { "AllowProfileCreation": (boolean, False), "Description": (str, True), "DomainName": (str, True), "EncryptionKey": (str, False), "ExpirationDays": (integer, False), "Fields": ([FieldMap], False), "Keys": ([KeyMap], False), "MaxProfileObjectCount": (integer, False), "ObjectTypeName": (str, True), "SourceLastUpdatedTimestampFormat": (str, False), "SourcePriority": (integer, False), "Tags": (Tags, False), "TemplateId": (str, False), }
[docs]class EventParameters(AWSProperty): """ `EventParameters <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-eventparameters.html>`__ """ props: PropsDictType = { "EventType": (str, True), "EventValueThreshold": (double, False), }
[docs]class EventsConfig(AWSProperty): """ `EventsConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-eventsconfig.html>`__ """ props: PropsDictType = { "EventParametersList": ([EventParameters], True), }
[docs]class RecommenderConfig(AWSProperty): """ `RecommenderConfig <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-recommenderconfig.html>`__ """ props: PropsDictType = { "EventsConfig": (EventsConfig, False), }
[docs]class Recommender(AWSObject): """ `Recommender <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-recommender.html>`__ """ resource_type = "AWS::CustomerProfiles::Recommender" props: PropsDictType = { "Description": (str, False), "DomainName": (str, True), "RecommenderConfig": (RecommenderConfig, False), "RecommenderName": (str, True), "RecommenderRecipeName": (str, True), "Tags": (Tags, False), }
[docs]class RangeOverride(AWSProperty): """ `RangeOverride <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-rangeoverride.html>`__ """ props: PropsDictType = { "End": (integer, False), "Start": (integer, True), "Unit": (str, True), }
[docs]class ConditionOverrides(AWSProperty): """ `ConditionOverrides <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-conditionoverrides.html>`__ """ props: PropsDictType = { "Range": (RangeOverride, False), }
[docs]class CalculatedAttributeDimension(AWSProperty): """ `CalculatedAttributeDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-calculatedattributedimension.html>`__ """ props: PropsDictType = { "ConditionOverrides": (ConditionOverrides, False), "DimensionType": (str, True), "Values": ([str], True), }
[docs]class ProfileDimension(AWSProperty): """ `ProfileDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiledimension.html>`__ """ props: PropsDictType = { "DimensionType": (str, True), "Values": ([str], True), }
[docs]class AddressDimension(AWSProperty): """ `AddressDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-addressdimension.html>`__ """ props: PropsDictType = { "City": (ProfileDimension, False), "Country": (ProfileDimension, False), "County": (ProfileDimension, False), "PostalCode": (ProfileDimension, False), "Province": (ProfileDimension, False), "State": (ProfileDimension, False), }
[docs]class AttributeDimension(AWSProperty): """ `AttributeDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-attributedimension.html>`__ """ props: PropsDictType = { "DimensionType": (str, True), "Values": ([str], True), }
[docs]class DateDimension(AWSProperty): """ `DateDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-datedimension.html>`__ """ props: PropsDictType = { "DimensionType": (str, True), "Values": ([str], True), }
[docs]class ExtraLengthValueProfileDimension(AWSProperty): """ `ExtraLengthValueProfileDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-extralengthvalueprofiledimension.html>`__ """ props: PropsDictType = { "DimensionType": (str, True), "Values": ([str], True), }
[docs]class ProfileTypeDimension(AWSProperty): """ `ProfileTypeDimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profiletypedimension.html>`__ """ props: PropsDictType = { "DimensionType": (str, True), "Values": ([str], True), }
[docs]class ProfileAttributes(AWSProperty): """ `ProfileAttributes <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-profileattributes.html>`__ """ props: PropsDictType = { "AccountNumber": (ProfileDimension, False), "AdditionalInformation": (ExtraLengthValueProfileDimension, False), "Address": (AddressDimension, False), "Attributes": (dict, False), "BillingAddress": (AddressDimension, False), "BirthDate": (DateDimension, False), "BusinessEmailAddress": (ProfileDimension, False), "BusinessName": (ProfileDimension, False), "BusinessPhoneNumber": (ProfileDimension, False), "EmailAddress": (ProfileDimension, False), "FirstName": (ProfileDimension, False), "GenderString": (ProfileDimension, False), "HomePhoneNumber": (ProfileDimension, False), "LastName": (ProfileDimension, False), "MailingAddress": (AddressDimension, False), "MiddleName": (ProfileDimension, False), "MobilePhoneNumber": (ProfileDimension, False), "PartyTypeString": (ProfileDimension, False), "PersonalEmailAddress": (ProfileDimension, False), "PhoneNumber": (ProfileDimension, False), "ProfileType": (ProfileTypeDimension, False), "ShippingAddress": (AddressDimension, False), }
[docs]class Dimension(AWSProperty): """ `Dimension <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-dimension.html>`__ """ props: PropsDictType = { "CalculatedAttributes": (dict, False), "ProfileAttributes": (ProfileAttributes, False), }
[docs]class SourceSegment(AWSProperty): """ `SourceSegment <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-sourcesegment.html>`__ """ props: PropsDictType = { "SegmentDefinitionName": (str, False), }
[docs]class Group(AWSProperty): """ `Group <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-group.html>`__ """ props: PropsDictType = { "Dimensions": ([Dimension], False), "SourceSegments": ([SourceSegment], False), "SourceType": (str, False), "Type": (str, False), }
[docs]class SegmentGroup(AWSProperty): """ `SegmentGroup <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-segmentgroup.html>`__ """ props: PropsDictType = { "Groups": ([Group], False), "Include": (str, False), }
[docs]class SortAttribute(AWSProperty): """ `SortAttribute <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-sortattribute.html>`__ """ props: PropsDictType = { "DataType": (str, False), "Name": (str, True), "Order": (str, True), "Type": (str, False), }
[docs]class SegmentSort(AWSProperty): """ `SegmentSort <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-segmentdefinition-segmentsort.html>`__ """ props: PropsDictType = { "Attributes": ([SortAttribute], True), }
[docs]class SegmentDefinition(AWSObject): """ `SegmentDefinition <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-customerprofiles-segmentdefinition.html>`__ """ resource_type = "AWS::CustomerProfiles::SegmentDefinition" props: PropsDictType = { "Description": (str, False), "DisplayName": (str, True), "DomainName": (str, True), "SegmentDefinitionName": (str, True), "SegmentGroups": (SegmentGroup, False), "SegmentSort": (SegmentSort, False), "SegmentSqlQuery": (str, False), "Tags": (Tags, False), }
[docs]class DestinationDetails(AWSProperty): """ `DestinationDetails <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-eventstream-destinationdetails.html>`__ """ props: PropsDictType = { "Status": (str, True), "Uri": (str, True), }
[docs]class DomainStats(AWSProperty): """ `DomainStats <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-domain-domainstats.html>`__ """ props: PropsDictType = { "MeteringProfileCount": (double, False), "ObjectCount": (double, False), "ProfileCount": (double, False), "TotalSize": (double, False), }
[docs]class Metrics(AWSProperty): """ `Metrics <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-metrics.html>`__ """ props: PropsDictType = { "coverage": (double, False), "freshness": (double, False), "hit": (double, False), "popularity": (double, False), "recall": (double, False), "similarity": (double, False), }
[docs]class RecommenderUpdate(AWSProperty): """ `RecommenderUpdate <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-recommenderupdate.html>`__ """ props: PropsDictType = { "CreationDateTime": (str, False), "FailureReason": (str, False), "LastUpdatedDateTime": (str, False), "RecommenderConfig": (RecommenderConfig, False), "Status": (str, False), }
[docs]class TrainingMetrics(AWSProperty): """ `TrainingMetrics <http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-customerprofiles-recommender-trainingmetrics.html>`__ """ props: PropsDictType = { "Metrics": (Metrics, False), "Time": (str, False), }