types

package
v1.44.9 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Feb 18, 2025 License: Apache-2.0 Imports: 4 Imported by: 0

Documentation

Index

Examples

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type AccessDeniedException

type AccessDeniedException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You do not have sufficient access to perform this action.

func (*AccessDeniedException) Error

func (e *AccessDeniedException) Error() string

func (*AccessDeniedException) ErrorCode

func (e *AccessDeniedException) ErrorCode() string

func (*AccessDeniedException) ErrorFault

func (e *AccessDeniedException) ErrorFault() smithy.ErrorFault

func (*AccessDeniedException) ErrorMessage

func (e *AccessDeniedException) ErrorMessage() string

type AdditionalSearchKey added in v1.20.0

type AdditionalSearchKey struct {

	// A searchable identifier of a customer profile.
	//
	// This member is required.
	KeyName *string

	// A list of key values.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

A data type pair that consists of a KeyName and Values list that is used in conjunction with the KeyNameand Values parameters to search for profiles using the SearchProfiles API.

type Address

type Address struct {

	// The first line of a customer address.
	Address1 *string

	// The second line of a customer address.
	Address2 *string

	// The third line of a customer address.
	Address3 *string

	// The fourth line of a customer address.
	Address4 *string

	// The city in which a customer lives.
	City *string

	// The country in which a customer lives.
	Country *string

	// The county in which a customer lives.
	County *string

	// The postal code of a customer address.
	PostalCode *string

	// The province in which a customer lives.
	Province *string

	// The state in which a customer lives.
	State *string
	// contains filtered or unexported fields
}

A generic address associated with the customer that is not mailing, shipping, or billing.

type AddressDimension added in v1.43.0

type AddressDimension struct {

	// The city belonging to the address.
	City *ProfileDimension

	// The country belonging to the address.
	Country *ProfileDimension

	// The county belonging to the address.
	County *ProfileDimension

	// The postal code belonging to the address.
	PostalCode *ProfileDimension

	// The province belonging to the address.
	Province *ProfileDimension

	// The state belonging to the address.
	State *ProfileDimension
	// contains filtered or unexported fields
}

Object that segments on Customer Profile's address object.

type AppflowIntegration added in v1.16.0

type AppflowIntegration struct {

	// The configurations that control how Customer Profiles retrieves data from the
	// source, Amazon AppFlow. Customer Profiles uses this information to create an
	// AppFlow flow on behalf of customers.
	//
	// This member is required.
	FlowDefinition *FlowDefinition

	// Batches in workflow of type APPFLOW_INTEGRATION .
	Batches []Batch
	// contains filtered or unexported fields
}

Details for workflow of type APPFLOW_INTEGRATION .

type AppflowIntegrationWorkflowAttributes added in v1.16.0

type AppflowIntegrationWorkflowAttributes struct {

	// The name of the AppFlow connector profile used for ingestion.
	//
	// This member is required.
	ConnectorProfileName *string

	// Specifies the source connector type, such as Salesforce, ServiceNow, and
	// Marketo. Indicates source of ingestion.
	//
	// This member is required.
	SourceConnectorType SourceConnectorType

	// The Amazon Resource Name (ARN) of the IAM role. Customer Profiles assumes this
	// role to create resources on your behalf as part of workflow execution.
	RoleArn *string
	// contains filtered or unexported fields
}

Structure holding all APPFLOW_INTEGRATION specific workflow attributes.

type AppflowIntegrationWorkflowMetrics added in v1.16.0

type AppflowIntegrationWorkflowMetrics struct {

	// Number of records processed in APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	RecordsProcessed int64

	// Total steps completed in APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	StepsCompleted int64

	// Total steps in APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	TotalSteps int64
	// contains filtered or unexported fields
}

Workflow specific execution metrics for APPFLOW_INTEGRATION workflow.

type AppflowIntegrationWorkflowStep added in v1.16.0

type AppflowIntegrationWorkflowStep struct {

	// End datetime of records pulled in batch during execution of workflow step for
	// APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	BatchRecordsEndTime *string

	// Start datetime of records pulled in batch during execution of workflow step for
	// APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	BatchRecordsStartTime *string

	// Creation timestamp of workflow step for APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	CreatedAt *time.Time

	// Message indicating execution of workflow step for APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	ExecutionMessage *string

	// Name of the flow created during execution of workflow step. APPFLOW_INTEGRATION
	// workflow type creates an appflow flow during workflow step execution on the
	// customers behalf.
	//
	// This member is required.
	FlowName *string

	// Last updated timestamp for workflow step for APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	LastUpdatedAt *time.Time

	// Total number of records processed during execution of workflow step for
	// APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	RecordsProcessed int64

	// Workflow step status for APPFLOW_INTEGRATION workflow.
	//
	// This member is required.
	Status Status
	// contains filtered or unexported fields
}

Workflow step details for APPFLOW_INTEGRATION workflow.

type AttributeDetails added in v1.24.0

type AttributeDetails struct {

	// A list of attribute items specified in the mathematical expression.
	//
	// This member is required.
	Attributes []AttributeItem

	// Mathematical expression that is performed on attribute items provided in the
	// attribute list. Each element in the expression should follow the structure of
	// \"{ObjectTypeName.AttributeName}\".
	//
	// This member is required.
	Expression *string
	// contains filtered or unexported fields
}

Mathematical expression and a list of attribute items specified in that expression.

type AttributeDimension added in v1.43.0

type AttributeDimension struct {

	// The action to segment with.
	//
	// This member is required.
	DimensionType AttributeDimensionType

	// The values to apply the DimensionType on.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

Object that segments on various Customer Profile's fields.

type AttributeDimensionType added in v1.43.0

type AttributeDimensionType string
const (
	AttributeDimensionTypeInclusive          AttributeDimensionType = "INCLUSIVE"
	AttributeDimensionTypeExclusive          AttributeDimensionType = "EXCLUSIVE"
	AttributeDimensionTypeContains           AttributeDimensionType = "CONTAINS"
	AttributeDimensionTypeBeginsWith         AttributeDimensionType = "BEGINS_WITH"
	AttributeDimensionTypeEndsWith           AttributeDimensionType = "ENDS_WITH"
	AttributeDimensionTypeBefore             AttributeDimensionType = "BEFORE"
	AttributeDimensionTypeAfter              AttributeDimensionType = "AFTER"
	AttributeDimensionTypeBetween            AttributeDimensionType = "BETWEEN"
	AttributeDimensionTypeNotBetween         AttributeDimensionType = "NOT_BETWEEN"
	AttributeDimensionTypeOn                 AttributeDimensionType = "ON"
	AttributeDimensionTypeGreaterThan        AttributeDimensionType = "GREATER_THAN"
	AttributeDimensionTypeLessThan           AttributeDimensionType = "LESS_THAN"
	AttributeDimensionTypeGreaterThanOrEqual AttributeDimensionType = "GREATER_THAN_OR_EQUAL"
	AttributeDimensionTypeLessThanOrEqual    AttributeDimensionType = "LESS_THAN_OR_EQUAL"
	AttributeDimensionTypeEqual              AttributeDimensionType = "EQUAL"
)

Enum values for AttributeDimensionType

func (AttributeDimensionType) Values added in v1.43.0

Values returns all known values for AttributeDimensionType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type AttributeItem added in v1.24.0

type AttributeItem struct {

	// The name of an attribute defined in a profile object type.
	//
	// This member is required.
	Name *string
	// contains filtered or unexported fields
}

The details of a single attribute item specified in the mathematical expression.

type AttributeMatchingModel added in v1.26.0

type AttributeMatchingModel string
const (
	AttributeMatchingModelOneToOne   AttributeMatchingModel = "ONE_TO_ONE"
	AttributeMatchingModelManyToMany AttributeMatchingModel = "MANY_TO_MANY"
)

Enum values for AttributeMatchingModel

func (AttributeMatchingModel) Values added in v1.26.0

Values returns all known values for AttributeMatchingModel. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type AttributeTypesSelector added in v1.26.0

type AttributeTypesSelector struct {

	// Configures the AttributeMatchingModel , you can either choose ONE_TO_ONE or
	// MANY_TO_MANY .
	//
	// This member is required.
	AttributeMatchingModel AttributeMatchingModel

	// The Address type. You can choose from Address , BusinessAddress ,
	// MaillingAddress , and ShippingAddress .
	//
	// You only can use the Address type in the MatchingRule . For example, if you want
	// to match profile based on BusinessAddress.City or MaillingAddress.City , you
	// need to choose the BusinessAddress and the MaillingAddress to represent the
	// Address type and specify the Address.City on the matching rule.
	Address []string

	// The Email type. You can choose from EmailAddress , BusinessEmailAddress and
	// PersonalEmailAddress .
	//
	// You only can use the EmailAddress type in the MatchingRule . For example, if you
	// want to match profile based on PersonalEmailAddress or BusinessEmailAddress ,
	// you need to choose the PersonalEmailAddress and the BusinessEmailAddress to
	// represent the EmailAddress type and only specify the EmailAddress on the
	// matching rule.
	EmailAddress []string

	// The PhoneNumber type. You can choose from PhoneNumber , HomePhoneNumber , and
	// MobilePhoneNumber .
	//
	// You only can use the PhoneNumber type in the MatchingRule . For example, if you
	// want to match a profile based on Phone or HomePhone , you need to choose the
	// Phone and the HomePhone to represent the PhoneNumber type and only specify the
	// PhoneNumber on the matching rule.
	PhoneNumber []string
	// contains filtered or unexported fields
}

Configuration information about the AttributeTypesSelector where the rule-based identity resolution uses to match profiles. You can choose how profiles are compared across attribute types and which attribute to use for matching from each type. There are three attribute types you can configure:

  • Email type

  • You can choose from Email , BusinessEmail , and PersonalEmail

  • Phone number type

  • You can choose from Phone , HomePhone , and MobilePhone

  • Address type

  • You can choose from Address , BusinessAddress , MaillingAddress , and ShippingAddress

You can either choose ONE_TO_ONE or MANY_TO_MANY as the AttributeMatchingModel . When choosing MANY_TO_MANY , the system can match attribute across the sub-types of an attribute type. For example, if the value of the Email field of Profile A and the value of BusinessEmail field of Profile B matches, the two profiles are matched on the Email type. When choosing ONE_TO_ONE the system can only match if the sub-types are exact matches. For example, only when the value of the Email field of Profile A and the value of the Email field of Profile B matches, the two profiles are matched on the Email type.

type AttributeValueItem added in v1.43.0

type AttributeValueItem struct {

	// An individual value belonging to the given attribute.
	Value *string
	// contains filtered or unexported fields
}

List containing the values for the given attribute.

type AutoMerging added in v1.12.0

type AutoMerging struct {

	// The flag that enables the auto-merging of duplicate profiles.
	//
	// This member is required.
	Enabled *bool

	// How the auto-merging process should resolve conflicts between different
	// profiles. For example, if Profile A and Profile B have the same FirstName and
	// LastName (and that is the matching criteria), which EmailAddress should be
	// used?
	ConflictResolution *ConflictResolution

	// A list of matching attributes that represent matching criteria. If two profiles
	// meet at least one of the requirements in the matching attributes list, they will
	// be merged.
	Consolidation *Consolidation

	// A number between 0 and 1 that represents the minimum confidence score required
	// for profiles within a matching group to be merged during the auto-merge process.
	// A higher score means higher similarity required to merge profiles.
	MinAllowedConfidenceScoreForMerging *float64
	// contains filtered or unexported fields
}

Configuration settings for how to perform the auto-merging of profiles.

type BadRequestException

type BadRequestException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The input you provided is invalid.

func (*BadRequestException) Error

func (e *BadRequestException) Error() string

func (*BadRequestException) ErrorCode

func (e *BadRequestException) ErrorCode() string

func (*BadRequestException) ErrorFault

func (e *BadRequestException) ErrorFault() smithy.ErrorFault

func (*BadRequestException) ErrorMessage

func (e *BadRequestException) ErrorMessage() string

type Batch added in v1.16.0

type Batch struct {

	// End time of batch to split ingestion.
	//
	// This member is required.
	EndTime *time.Time

	// Start time of batch to split ingestion.
	//
	// This member is required.
	StartTime *time.Time
	// contains filtered or unexported fields
}

Batch defines the boundaries for ingestion for each step in APPFLOW_INTEGRATION workflow. APPFLOW_INTEGRATION workflow splits ingestion based on these boundaries.

type BatchGetCalculatedAttributeForProfileError added in v1.43.0

type BatchGetCalculatedAttributeForProfileError struct {

	// Status code for why a specific profile and calculated attribute failed.
	//
	// This member is required.
	Code *string

	// Message describing why a specific profile and calculated attribute failed.
	//
	// This member is required.
	Message *string

	// The profile id that failed.
	//
	// This member is required.
	ProfileId *string
	// contains filtered or unexported fields
}

Error object describing why a specific profile and calculated attribute failed.

type BatchGetProfileError added in v1.43.0

type BatchGetProfileError struct {

	// Status code for why a specific profile failed.
	//
	// This member is required.
	Code *string

	// Message describing why a specific profile failed.
	//
	// This member is required.
	Message *string

	// The profile id that failed.
	//
	// This member is required.
	ProfileId *string
	// contains filtered or unexported fields
}

Error object describing why a specific profile failed.

type CalculatedAttributeDimension added in v1.43.0

type CalculatedAttributeDimension struct {

	// The action to segment with.
	//
	// This member is required.
	DimensionType AttributeDimensionType

	// The values to apply the DimensionType with.
	//
	// This member is required.
	Values []string

	// Applies the given condition over the initial Calculated Attribute's definition.
	ConditionOverrides *ConditionOverrides
	// contains filtered or unexported fields
}

Object that segments on Customer Profile's Calculated Attributes.

type CalculatedAttributeValue added in v1.43.0

type CalculatedAttributeValue struct {

	// The unique name of the calculated attribute.
	CalculatedAttributeName *string

	// The display name of the calculated attribute.
	DisplayName *string

	// Indicates whether the calculated attribute's value is based on partial data. If
	// the data is partial, it is set to true.
	IsDataPartial *string

	// The profile id belonging to this calculated attribute value.
	ProfileId *string

	// The value of the calculated attribute.
	Value *string
	// contains filtered or unexported fields
}

The object containing the values of a single calculated attribute value.

type ComparisonOperator added in v1.44.0

type ComparisonOperator string
const (
	ComparisonOperatorInclusive          ComparisonOperator = "INCLUSIVE"
	ComparisonOperatorExclusive          ComparisonOperator = "EXCLUSIVE"
	ComparisonOperatorContains           ComparisonOperator = "CONTAINS"
	ComparisonOperatorBeginsWith         ComparisonOperator = "BEGINS_WITH"
	ComparisonOperatorEndsWith           ComparisonOperator = "ENDS_WITH"
	ComparisonOperatorGreaterThan        ComparisonOperator = "GREATER_THAN"
	ComparisonOperatorLessThan           ComparisonOperator = "LESS_THAN"
	ComparisonOperatorGreaterThanOrEqual ComparisonOperator = "GREATER_THAN_OR_EQUAL"
	ComparisonOperatorLessThanOrEqual    ComparisonOperator = "LESS_THAN_OR_EQUAL"
	ComparisonOperatorEqual              ComparisonOperator = "EQUAL"
	ComparisonOperatorBefore             ComparisonOperator = "BEFORE"
	ComparisonOperatorAfter              ComparisonOperator = "AFTER"
	ComparisonOperatorOn                 ComparisonOperator = "ON"
	ComparisonOperatorBetween            ComparisonOperator = "BETWEEN"
	ComparisonOperatorNotBetween         ComparisonOperator = "NOT_BETWEEN"
)

Enum values for ComparisonOperator

func (ComparisonOperator) Values added in v1.44.0

Values returns all known values for ComparisonOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ConditionOverrides added in v1.43.0

type ConditionOverrides struct {

	// The relative time period over which data is included in the aggregation for
	// this override.
	Range *RangeOverride
	// contains filtered or unexported fields
}

An object to override the original condition block of a calculated attribute.

type Conditions added in v1.24.0

type Conditions struct {

	// The number of profile objects used for the calculated attribute.
	ObjectCount *int32

	// The relative time period over which data is included in the aggregation.
	Range *Range

	// The threshold for the calculated attribute.
	Threshold *Threshold
	// contains filtered or unexported fields
}

The conditions including range, object count, and threshold for the calculated attribute.

type ConflictResolution added in v1.12.0

type ConflictResolution struct {

	// How the auto-merging process should resolve conflicts between different
	// profiles.
	//
	//   - RECENCY : Uses the data that was most recently updated.
	//
	//   - SOURCE : Uses the data from a specific source. For example, if a company has
	//   been aquired or two departments have merged, data from the specified source is
	//   used. If two duplicate profiles are from the same source, then RECENCY is used
	//   again.
	//
	// This member is required.
	ConflictResolvingModel ConflictResolvingModel

	// The ObjectType name that is used to resolve profile merging conflicts when
	// choosing SOURCE as the ConflictResolvingModel .
	SourceName *string
	// contains filtered or unexported fields
}

How the auto-merging process should resolve conflicts between different profiles.

type ConflictResolvingModel added in v1.12.0

type ConflictResolvingModel string
const (
	ConflictResolvingModelRecency ConflictResolvingModel = "RECENCY"
	ConflictResolvingModelSource  ConflictResolvingModel = "SOURCE"
)

Enum values for ConflictResolvingModel

func (ConflictResolvingModel) Values added in v1.12.0

Values returns all known values for ConflictResolvingModel. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ConnectorOperator added in v1.3.0

type ConnectorOperator struct {

	// The operation to be performed on the provided Marketo source fields.
	Marketo MarketoConnectorOperator

	// The operation to be performed on the provided Amazon S3 source fields.
	S3 S3ConnectorOperator

	// The operation to be performed on the provided Salesforce source fields.
	Salesforce SalesforceConnectorOperator

	// The operation to be performed on the provided ServiceNow source fields.
	ServiceNow ServiceNowConnectorOperator

	// The operation to be performed on the provided Zendesk source fields.
	Zendesk ZendeskConnectorOperator
	// contains filtered or unexported fields
}

The operation to be performed on the provided source fields.

type Consolidation added in v1.12.0

type Consolidation struct {

	// A list of matching criteria.
	//
	// This member is required.
	MatchingAttributesList [][]string
	// contains filtered or unexported fields
}

The matching criteria to be used during the auto-merging process.

type DataFormat added in v1.43.0

type DataFormat string
const (
	DataFormatCsv   DataFormat = "CSV"
	DataFormatJsonl DataFormat = "JSONL"
	DataFormatOrc   DataFormat = "ORC"
)

Enum values for DataFormat

func (DataFormat) Values added in v1.43.0

func (DataFormat) Values() []DataFormat

Values returns all known values for DataFormat. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DataPullMode added in v1.3.0

type DataPullMode string
const (
	DataPullModeIncremental DataPullMode = "Incremental"
	DataPullModeComplete    DataPullMode = "Complete"
)

Enum values for DataPullMode

func (DataPullMode) Values added in v1.3.0

func (DataPullMode) Values() []DataPullMode

Values returns all known values for DataPullMode. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DateDimension added in v1.43.0

type DateDimension struct {

	// The action to segment with.
	//
	// This member is required.
	DimensionType DateDimensionType

	// The values to apply the DimensionType on.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

Object that segments on various Customer Profile's date fields.

type DateDimensionType added in v1.43.0

type DateDimensionType string
const (
	DateDimensionTypeBefore     DateDimensionType = "BEFORE"
	DateDimensionTypeAfter      DateDimensionType = "AFTER"
	DateDimensionTypeBetween    DateDimensionType = "BETWEEN"
	DateDimensionTypeNotBetween DateDimensionType = "NOT_BETWEEN"
	DateDimensionTypeOn         DateDimensionType = "ON"
)

Enum values for DateDimensionType

func (DateDimensionType) Values added in v1.43.0

Values returns all known values for DateDimensionType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type DestinationSummary added in v1.25.0

type DestinationSummary struct {

	// The status of enabling the Kinesis stream as a destination for export.
	//
	// This member is required.
	Status EventStreamDestinationStatus

	// The StreamARN of the destination to deliver profile events to. For example,
	// arn:aws:kinesis:region:account-id:stream/stream-name.
	//
	// This member is required.
	Uri *string

	// The timestamp when the status last changed to UNHEALHY .
	UnhealthySince *time.Time
	// contains filtered or unexported fields
}

Summary information about the Kinesis data stream

type DetectedProfileObjectType added in v1.33.0

type DetectedProfileObjectType struct {

	// A map of the name and the ObjectType field.
	Fields map[string]ObjectTypeField

	// A list of unique keys that can be used to map data to a profile.
	Keys map[string][]ObjectTypeKey

	// The format of sourceLastUpdatedTimestamp that was detected in fields.
	SourceLastUpdatedTimestampFormat *string
	// contains filtered or unexported fields
}

Contains ProfileObjectType mapping information from the model.

type Dimension added in v1.43.0

type Dimension interface {
	// contains filtered or unexported methods
}

Object that holds what profile and calculated attributes to segment on.

The following types satisfy this interface:

DimensionMemberCalculatedAttributes
DimensionMemberProfileAttributes
Example (OutputUsage)
// Code generated by smithy-go-codegen DO NOT EDIT.

package main

import (
	"fmt"
	"github.com/aws/aws-sdk-go-v2/service/customerprofiles/types"
)

func main() {
	var union types.Dimension
	// type switches can be used to check the union value
	switch v := union.(type) {
	case *types.DimensionMemberCalculatedAttributes:
		_ = v.Value // Value is map[string]types.CalculatedAttributeDimension

	case *types.DimensionMemberProfileAttributes:
		_ = v.Value // Value is types.ProfileAttributes

	case *types.UnknownUnionMember:
		fmt.Println("unknown tag:", v.Tag)

	default:
		fmt.Println("union is nil or unknown type")

	}
}

var _ map[string]types.CalculatedAttributeDimension
var _ *types.ProfileAttributes
Output:

type DimensionMemberCalculatedAttributes added in v1.43.0

type DimensionMemberCalculatedAttributes struct {
	Value map[string]CalculatedAttributeDimension
	// contains filtered or unexported fields
}

Object that holds the calculated attributes to segment on.

type DimensionMemberProfileAttributes added in v1.43.0

type DimensionMemberProfileAttributes struct {
	Value ProfileAttributes
	// contains filtered or unexported fields
}

Object that holds the profile attributes to segment on.

type DomainStats

type DomainStats struct {

	// The number of profiles that you are currently paying for in the domain. If you
	// have more than 100 objects associated with a single profile, that profile counts
	// as two profiles. If you have more than 200 objects, that profile counts as
	// three, and so on.
	MeteringProfileCount int64

	// The total number of objects in domain.
	ObjectCount int64

	// The total number of profiles currently in the domain.
	ProfileCount int64

	// The total size, in bytes, of all objects in the domain.
	TotalSize int64
	// contains filtered or unexported fields
}

Usage-specific statistics about the domain.

type EstimateStatus added in v1.43.0

type EstimateStatus string
const (
	EstimateStatusRunning   EstimateStatus = "RUNNING"
	EstimateStatusSucceeded EstimateStatus = "SUCCEEDED"
	EstimateStatusFailed    EstimateStatus = "FAILED"
)

Enum values for EstimateStatus

func (EstimateStatus) Values added in v1.43.0

func (EstimateStatus) Values() []EstimateStatus

Values returns all known values for EstimateStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type EventStreamDestinationDetails added in v1.25.0

type EventStreamDestinationDetails struct {

	// The status of enabling the Kinesis stream as a destination for export.
	//
	// This member is required.
	Status EventStreamDestinationStatus

	// The StreamARN of the destination to deliver profile events to. For example,
	// arn:aws:kinesis:region:account-id:stream/stream-name.
	//
	// This member is required.
	Uri *string

	// The human-readable string that corresponds to the error or success while
	// enabling the streaming destination.
	Message *string

	// The timestamp when the status last changed to UNHEALHY .
	UnhealthySince *time.Time
	// contains filtered or unexported fields
}

Details of the destination being used for the EventStream.

type EventStreamDestinationStatus added in v1.25.0

type EventStreamDestinationStatus string
const (
	EventStreamDestinationStatusHealthy   EventStreamDestinationStatus = "HEALTHY"
	EventStreamDestinationStatusUnhealthy EventStreamDestinationStatus = "UNHEALTHY"
)

Enum values for EventStreamDestinationStatus

func (EventStreamDestinationStatus) Values added in v1.25.0

Values returns all known values for EventStreamDestinationStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type EventStreamState added in v1.25.0

type EventStreamState string
const (
	EventStreamStateRunning EventStreamState = "RUNNING"
	EventStreamStateStopped EventStreamState = "STOPPED"
)

Enum values for EventStreamState

func (EventStreamState) Values added in v1.25.0

Values returns all known values for EventStreamState. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type EventStreamSummary added in v1.25.0

type EventStreamSummary struct {

	// The unique name of the domain.
	//
	// This member is required.
	DomainName *string

	// A unique identifier for the event stream.
	//
	// This member is required.
	EventStreamArn *string

	// The name of the event stream.
	//
	// This member is required.
	EventStreamName *string

	// The operational state of destination stream for export.
	//
	// This member is required.
	State EventStreamState

	// Summary information about the Kinesis data stream.
	DestinationSummary *DestinationSummary

	// The timestamp when the State changed to STOPPED .
	StoppedSince *time.Time

	// The tags used to organize, track, or control access for this resource.
	Tags map[string]string
	// contains filtered or unexported fields
}

An instance of EventStream in a list of EventStreams.

type EventTriggerCondition added in v1.44.0

type EventTriggerCondition struct {

	// A list of dimensions to be evaluated for the event.
	//
	// This member is required.
	EventTriggerDimensions []EventTriggerDimension

	// The operator used to combine multiple dimensions.
	//
	// This member is required.
	LogicalOperator EventTriggerLogicalOperator
	// contains filtered or unexported fields
}

Specifies the circumstances under which the event should trigger the destination.

type EventTriggerDimension added in v1.44.0

type EventTriggerDimension struct {

	// A list of object attributes to be evaluated.
	//
	// This member is required.
	ObjectAttributes []ObjectAttribute
	// contains filtered or unexported fields
}

A specific event dimension to be assessed.

type EventTriggerLimits added in v1.44.0

type EventTriggerLimits struct {

	// In milliseconds. Specifies that an event will only trigger the destination if
	// it is processed within a certain latency period.
	EventExpiration *int64

	// A list of time periods during which the limits apply.
	Periods []Period
	// contains filtered or unexported fields
}

Defines limits controlling whether an event triggers the destination, based on ingestion latency and the number of invocations per profile over specific time periods.

type EventTriggerLogicalOperator added in v1.44.0

type EventTriggerLogicalOperator string
const (
	EventTriggerLogicalOperatorAny  EventTriggerLogicalOperator = "ANY"
	EventTriggerLogicalOperatorAll  EventTriggerLogicalOperator = "ALL"
	EventTriggerLogicalOperatorNone EventTriggerLogicalOperator = "NONE"
)

Enum values for EventTriggerLogicalOperator

func (EventTriggerLogicalOperator) Values added in v1.44.0

Values returns all known values for EventTriggerLogicalOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type EventTriggerSummaryItem added in v1.44.0

type EventTriggerSummaryItem struct {

	// The timestamp of when the event trigger was created.
	CreatedAt *time.Time

	// The description of the event trigger.
	Description *string

	// The unique name of the event trigger.
	EventTriggerName *string

	// The timestamp of when the event trigger was most recently updated.
	LastUpdatedAt *time.Time

	// The unique name of the object type.
	ObjectTypeName *string

	// An array of key-value pairs to apply to this resource.
	Tags map[string]string
	// contains filtered or unexported fields
}

The summary of the event trigger.

type ExportingConfig added in v1.12.0

type ExportingConfig struct {

	// The S3 location where Identity Resolution Jobs write result files.
	S3Exporting *S3ExportingConfig
	// contains filtered or unexported fields
}

Configuration information about the S3 bucket where Identity Resolution Jobs writes result files.

You need to give Customer Profiles service principal write permission to your S3 bucket. Otherwise, you'll get an exception in the API response. For an example policy, see Amazon Connect Customer Profiles cross-service confused deputy prevention.

type ExportingLocation added in v1.12.0

type ExportingLocation struct {

	// Information about the S3 location where Identity Resolution Jobs write result
	// files.
	S3Exporting *S3ExportingLocation
	// contains filtered or unexported fields
}

The S3 location where Identity Resolution Jobs write result files.

type ExtraLengthValueProfileDimension added in v1.43.0

type ExtraLengthValueProfileDimension struct {

	// The action to segment with.
	//
	// This member is required.
	DimensionType StringDimensionType

	// The values to apply the DimensionType on.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

Object that segments on various Customer profile's fields that are larger than normal.

type FieldContentType

type FieldContentType string
const (
	FieldContentTypeString       FieldContentType = "STRING"
	FieldContentTypeNumber       FieldContentType = "NUMBER"
	FieldContentTypePhoneNumber  FieldContentType = "PHONE_NUMBER"
	FieldContentTypeEmailAddress FieldContentType = "EMAIL_ADDRESS"
	FieldContentTypeName         FieldContentType = "NAME"
)

Enum values for FieldContentType

func (FieldContentType) Values

Values returns all known values for FieldContentType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type FieldSourceProfileIds added in v1.5.0

type FieldSourceProfileIds struct {

	// A unique identifier for the account number field to be merged.
	AccountNumber *string

	// A unique identifier for the additional information field to be merged.
	AdditionalInformation *string

	// A unique identifier for the party type field to be merged.
	Address *string

	// A unique identifier for the attributes field to be merged.
	Attributes map[string]string

	// A unique identifier for the billing type field to be merged.
	BillingAddress *string

	// A unique identifier for the birthdate field to be merged.
	BirthDate *string

	// A unique identifier for the party type field to be merged.
	BusinessEmailAddress *string

	// A unique identifier for the business name field to be merged.
	BusinessName *string

	// A unique identifier for the business phone number field to be merged.
	BusinessPhoneNumber *string

	// A unique identifier for the email address field to be merged.
	EmailAddress *string

	// A unique identifier for the first name field to be merged.
	FirstName *string

	// A unique identifier for the gender field to be merged.
	Gender *string

	// A unique identifier for the home phone number field to be merged.
	HomePhoneNumber *string

	// A unique identifier for the last name field to be merged.
	LastName *string

	// A unique identifier for the mailing address field to be merged.
	MailingAddress *string

	// A unique identifier for the middle name field to be merged.
	MiddleName *string

	// A unique identifier for the mobile phone number field to be merged.
	MobilePhoneNumber *string

	// A unique identifier for the party type field to be merged.
	PartyType *string

	// A unique identifier for the personal email address field to be merged.
	PersonalEmailAddress *string

	// A unique identifier for the phone number field to be merged.
	PhoneNumber *string

	// A unique identifier for the shipping address field to be merged.
	ShippingAddress *string
	// contains filtered or unexported fields
}

A duplicate customer profile that is to be merged into a main profile.

type Filter added in v1.43.0

type Filter struct {

	// Holds the list of Filter groups within the Filter definition.
	//
	// This member is required.
	Groups []FilterGroup

	// Define whether to include or exclude objects for Calculated Attributed
	// calculation that fit the filter groups criteria.
	//
	// This member is required.
	Include Include
	// contains filtered or unexported fields
}

Defines how to filter the objects coming in for calculated attributes.

type FilterAttributeDimension added in v1.43.0

type FilterAttributeDimension struct {

	// The action to filter with.
	//
	// This member is required.
	DimensionType FilterDimensionType

	// The values to apply the DimensionType on.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

Object that defines how to filter the incoming objects for the calculated attribute.

type FilterDimension added in v1.43.0

type FilterDimension struct {

	// Is the attribute within the FilterDimension map
	//
	// This member is required.
	Attributes map[string]FilterAttributeDimension
	// contains filtered or unexported fields
}

Contains the map of attribute names to attribute dimensions.

type FilterDimensionType added in v1.43.0

type FilterDimensionType string
const (
	FilterDimensionTypeInclusive          FilterDimensionType = "INCLUSIVE"
	FilterDimensionTypeExclusive          FilterDimensionType = "EXCLUSIVE"
	FilterDimensionTypeContains           FilterDimensionType = "CONTAINS"
	FilterDimensionTypeBeginsWith         FilterDimensionType = "BEGINS_WITH"
	FilterDimensionTypeEndsWith           FilterDimensionType = "ENDS_WITH"
	FilterDimensionTypeBefore             FilterDimensionType = "BEFORE"
	FilterDimensionTypeAfter              FilterDimensionType = "AFTER"
	FilterDimensionTypeBetween            FilterDimensionType = "BETWEEN"
	FilterDimensionTypeNotBetween         FilterDimensionType = "NOT_BETWEEN"
	FilterDimensionTypeOn                 FilterDimensionType = "ON"
	FilterDimensionTypeGreaterThan        FilterDimensionType = "GREATER_THAN"
	FilterDimensionTypeLessThan           FilterDimensionType = "LESS_THAN"
	FilterDimensionTypeGreaterThanOrEqual FilterDimensionType = "GREATER_THAN_OR_EQUAL"
	FilterDimensionTypeLessThanOrEqual    FilterDimensionType = "LESS_THAN_OR_EQUAL"
	FilterDimensionTypeEqual              FilterDimensionType = "EQUAL"
)

Enum values for FilterDimensionType

func (FilterDimensionType) Values added in v1.43.0

Values returns all known values for FilterDimensionType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type FilterGroup added in v1.43.0

type FilterGroup struct {

	// Object that holds the attributes to filter on.
	//
	// This member is required.
	Dimensions []FilterDimension

	// The type of logical relationship between the dimensions of the Filter group.
	//
	// This member is required.
	Type Type
	// contains filtered or unexported fields
}

Object that holds the dimensions to filter on.

type FlowDefinition added in v1.3.0

type FlowDefinition struct {

	// The specified name of the flow. Use underscores (_) or hyphens (-) only. Spaces
	// are not allowed.
	//
	// This member is required.
	FlowName *string

	// The Amazon Resource Name of the AWS Key Management Service (KMS) key you
	// provide for encryption.
	//
	// This member is required.
	KmsArn *string

	// The configuration that controls how Customer Profiles retrieves data from the
	// source.
	//
	// This member is required.
	SourceFlowConfig *SourceFlowConfig

	// A list of tasks that Customer Profiles performs while transferring the data in
	// the flow run.
	//
	// This member is required.
	Tasks []Task

	// The trigger settings that determine how and when the flow runs.
	//
	// This member is required.
	TriggerConfig *TriggerConfig

	// A description of the flow you want to create.
	Description *string
	// contains filtered or unexported fields
}

The configurations that control how Customer Profiles retrieves data from the source, Amazon AppFlow. Customer Profiles uses this information to create an AppFlow flow on behalf of customers.

type FoundByKeyValue added in v1.20.0

type FoundByKeyValue struct {

	// A searchable identifier of a customer profile.
	KeyName *string

	// A list of key values.
	Values []string
	// contains filtered or unexported fields
}

A data type pair that consists of a KeyName and Values list that were used to find a profile returned in response to a SearchProfilesrequest.

type Gender

type Gender string
const (
	GenderMale        Gender = "MALE"
	GenderFemale      Gender = "FEMALE"
	GenderUnspecified Gender = "UNSPECIFIED"
)

Enum values for Gender

func (Gender) Values

func (Gender) Values() []Gender

Values returns all known values for Gender. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Group added in v1.43.0

type Group struct {

	// Defines the attributes to segment on.
	Dimensions []Dimension

	// Defines the starting source of data.
	SourceSegments []SourceSegment

	// Defines how to interact with the source data.
	SourceType IncludeOptions

	// Defines how to interact with the profiles found in the current filtering.
	Type IncludeOptions
	// contains filtered or unexported fields
}

Contains dimensions that determine what to segment on.

type IdentityResolutionJob added in v1.12.0

type IdentityResolutionJob struct {

	// The unique name of the domain.
	DomainName *string

	// The S3 location where the Identity Resolution Job writes result files.
	ExportingLocation *ExportingLocation

	// The timestamp of when the job was completed.
	JobEndTime *time.Time

	// The unique identifier of the Identity Resolution Job.
	JobId *string

	// The timestamp of when the job was started or will be started.
	JobStartTime *time.Time

	// Statistics about an Identity Resolution Job.
	JobStats *JobStats

	// The error messages that are generated when the Identity Resolution Job runs.
	Message *string

	// The status of the Identity Resolution Job.
	//
	//   - PENDING : The Identity Resolution Job is scheduled but has not started yet.
	//   If you turn off the Identity Resolution feature in your domain, jobs in the
	//   PENDING state are deleted.
	//
	//   - PREPROCESSING : The Identity Resolution Job is loading your data.
	//
	//   - FIND_MATCHING : The Identity Resolution Job is using the machine learning
	//   model to identify profiles that belong to the same matching group.
	//
	//   - MERGING : The Identity Resolution Job is merging duplicate profiles.
	//
	//   - COMPLETED : The Identity Resolution Job completed successfully.
	//
	//   - PARTIAL_SUCCESS : There's a system error and not all of the data is merged.
	//   The Identity Resolution Job writes a message indicating the source of the
	//   problem.
	//
	//   - FAILED : The Identity Resolution Job did not merge any data. It writes a
	//   message indicating the source of the problem.
	Status IdentityResolutionJobStatus
	// contains filtered or unexported fields
}

Information about the Identity Resolution Job.

type IdentityResolutionJobStatus added in v1.12.0

type IdentityResolutionJobStatus string
const (
	IdentityResolutionJobStatusPending        IdentityResolutionJobStatus = "PENDING"
	IdentityResolutionJobStatusPreprocessing  IdentityResolutionJobStatus = "PREPROCESSING"
	IdentityResolutionJobStatusFindMatching   IdentityResolutionJobStatus = "FIND_MATCHING"
	IdentityResolutionJobStatusMerging        IdentityResolutionJobStatus = "MERGING"
	IdentityResolutionJobStatusCompleted      IdentityResolutionJobStatus = "COMPLETED"
	IdentityResolutionJobStatusPartialSuccess IdentityResolutionJobStatus = "PARTIAL_SUCCESS"
	IdentityResolutionJobStatusFailed         IdentityResolutionJobStatus = "FAILED"
)

Enum values for IdentityResolutionJobStatus

func (IdentityResolutionJobStatus) Values added in v1.12.0

Values returns all known values for IdentityResolutionJobStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Include added in v1.43.0

type Include string
const (
	IncludeAll  Include = "ALL"
	IncludeAny  Include = "ANY"
	IncludeNone Include = "NONE"
)

Enum values for Include

func (Include) Values added in v1.43.0

func (Include) Values() []Include

Values returns all known values for Include. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type IncludeOptions added in v1.43.0

type IncludeOptions string
const (
	IncludeOptionsAll  IncludeOptions = "ALL"
	IncludeOptionsAny  IncludeOptions = "ANY"
	IncludeOptionsNone IncludeOptions = "NONE"
)

Enum values for IncludeOptions

func (IncludeOptions) Values added in v1.43.0

func (IncludeOptions) Values() []IncludeOptions

Values returns all known values for IncludeOptions. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type IncrementalPullConfig added in v1.3.0

type IncrementalPullConfig struct {

	// A field that specifies the date time or timestamp field as the criteria to use
	// when importing incremental records from the source.
	DatetimeTypeFieldName *string
	// contains filtered or unexported fields
}

Specifies the configuration used when importing incremental records from the source.

type IntegrationConfig added in v1.16.0

type IntegrationConfig struct {

	// Configuration data for APPFLOW_INTEGRATION workflow type.
	AppflowIntegration *AppflowIntegration
	// contains filtered or unexported fields
}

Configuration data for integration workflow.

type InternalServerException

type InternalServerException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

An internal service error occurred.

func (*InternalServerException) Error

func (e *InternalServerException) Error() string

func (*InternalServerException) ErrorCode

func (e *InternalServerException) ErrorCode() string

func (*InternalServerException) ErrorFault

func (e *InternalServerException) ErrorFault() smithy.ErrorFault

func (*InternalServerException) ErrorMessage

func (e *InternalServerException) ErrorMessage() string

type JobSchedule added in v1.12.0

type JobSchedule struct {

	// The day when the Identity Resolution Job should run every week.
	//
	// This member is required.
	DayOfTheWeek JobScheduleDayOfTheWeek

	// The time when the Identity Resolution Job should run every week.
	//
	// This member is required.
	Time *string
	// contains filtered or unexported fields
}

The day and time when do you want to start the Identity Resolution Job every week.

type JobScheduleDayOfTheWeek added in v1.12.0

type JobScheduleDayOfTheWeek string
const (
	JobScheduleDayOfTheWeekSunday    JobScheduleDayOfTheWeek = "SUNDAY"
	JobScheduleDayOfTheWeekMonday    JobScheduleDayOfTheWeek = "MONDAY"
	JobScheduleDayOfTheWeekTuesday   JobScheduleDayOfTheWeek = "TUESDAY"
	JobScheduleDayOfTheWeekWednesday JobScheduleDayOfTheWeek = "WEDNESDAY"
	JobScheduleDayOfTheWeekThursday  JobScheduleDayOfTheWeek = "THURSDAY"
	JobScheduleDayOfTheWeekFriday    JobScheduleDayOfTheWeek = "FRIDAY"
	JobScheduleDayOfTheWeekSaturday  JobScheduleDayOfTheWeek = "SATURDAY"
)

Enum values for JobScheduleDayOfTheWeek

func (JobScheduleDayOfTheWeek) Values added in v1.12.0

Values returns all known values for JobScheduleDayOfTheWeek. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type JobStats added in v1.12.0

type JobStats struct {

	// The number of matches found.
	NumberOfMatchesFound int64

	// The number of merges completed.
	NumberOfMergesDone int64

	// The number of profiles reviewed.
	NumberOfProfilesReviewed int64
	// contains filtered or unexported fields
}

Statistics about the Identity Resolution Job.

type ListCalculatedAttributeDefinitionItem added in v1.24.0

type ListCalculatedAttributeDefinitionItem struct {

	// The unique name of the calculated attribute.
	CalculatedAttributeName *string

	// The threshold for the calculated attribute.
	CreatedAt *time.Time

	// The threshold for the calculated attribute.
	Description *string

	// The display name of the calculated attribute.
	DisplayName *string

	// The timestamp of when the calculated attribute definition was most recently
	// edited.
	LastUpdatedAt *time.Time

	// The tags used to organize, track, or control access for this resource.
	Tags map[string]string
	// contains filtered or unexported fields
}

The details of a single calculated attribute definition.

type ListCalculatedAttributeForProfileItem added in v1.24.0

type ListCalculatedAttributeForProfileItem struct {

	// The unique name of the calculated attribute.
	CalculatedAttributeName *string

	// The display name of the calculated attribute.
	DisplayName *string

	// Indicates whether the calculated attribute’s value is based on partial data. If
	// data is partial, it is set to true.
	IsDataPartial *string

	// The value of the calculated attribute.
	Value *string
	// contains filtered or unexported fields
}

The details of a single calculated attribute for a profile.

type ListDomainItem

type ListDomainItem struct {

	// The timestamp of when the domain was created.
	//
	// This member is required.
	CreatedAt *time.Time

	// The unique name of the domain.
	//
	// This member is required.
	DomainName *string

	// The timestamp of when the domain was most recently edited.
	//
	// This member is required.
	LastUpdatedAt *time.Time

	// The tags used to organize, track, or control access for this resource.
	Tags map[string]string
	// contains filtered or unexported fields
}

An object in a list that represents a domain.

type ListIntegrationItem

type ListIntegrationItem struct {

	// The timestamp of when the domain was created.
	//
	// This member is required.
	CreatedAt *time.Time

	// The unique name of the domain.
	//
	// This member is required.
	DomainName *string

	// The timestamp of when the domain was most recently edited.
	//
	// This member is required.
	LastUpdatedAt *time.Time

	// The URI of the S3 bucket or any other type of data source.
	//
	// This member is required.
	Uri *string

	// A list of unique names for active event triggers associated with the
	// integration.
	EventTriggerNames []string

	// Boolean that shows if the Flow that's associated with the Integration is
	// created in Amazon Appflow, or with ObjectTypeName equals _unstructured via
	// API/CLI in flowDefinition.
	IsUnstructured *bool

	// The name of the profile object type.
	ObjectTypeName *string

	// A map in which each key is an event type from an external application such as
	// Segment or Shopify, and each value is an ObjectTypeName (template) used to
	// ingest the event. It supports the following event types: SegmentIdentify ,
	// ShopifyCreateCustomers , ShopifyUpdateCustomers , ShopifyCreateDraftOrders ,
	// ShopifyUpdateDraftOrders , ShopifyCreateOrders , and ShopifyUpdatedOrders .
	ObjectTypeNames map[string]string

	// The Amazon Resource Name (ARN) of the IAM role. The Integration uses this role
	// to make Customer Profiles requests on your behalf.
	RoleArn *string

	// The tags used to organize, track, or control access for this resource.
	Tags map[string]string

	// Unique identifier for the workflow.
	WorkflowId *string
	// contains filtered or unexported fields
}

An integration in list of integrations.

type ListObjectTypeAttributeItem added in v1.43.0

type ListObjectTypeAttributeItem struct {

	// Name of the attribute.
	//
	// This member is required.
	AttributeName *string

	// When the attribute was last updated.
	//
	// This member is required.
	LastUpdatedAt *time.Time
	// contains filtered or unexported fields
}

Item that contains the attribute and when it was last updated.

type ListProfileObjectTypeItem

type ListProfileObjectTypeItem struct {

	// Description of the profile object type.
	//
	// This member is required.
	Description *string

	// The name of the profile object type.
	//
	// This member is required.
	ObjectTypeName *string

	// The timestamp of when the domain was created.
	CreatedAt *time.Time

	// The timestamp of when the domain was most recently edited.
	LastUpdatedAt *time.Time

	// The amount of provisioned profile object max count available.
	MaxAvailableProfileObjectCount *int32

	// The amount of profile object max count assigned to the object type.
	MaxProfileObjectCount *int32

	// The tags used to organize, track, or control access for this resource.
	Tags map[string]string
	// contains filtered or unexported fields
}

A ProfileObjectType instance.

type ListProfileObjectTypeTemplateItem

type ListProfileObjectTypeTemplateItem struct {

	// The name of the source of the object template.
	SourceName *string

	// The source of the object template.
	SourceObject *string

	// A unique identifier for the object template.
	TemplateId *string
	// contains filtered or unexported fields
}

A ProfileObjectTypeTemplate in a list of ProfileObjectTypeTemplates.

type ListProfileObjectsItem

type ListProfileObjectsItem struct {

	// A JSON representation of a ProfileObject that belongs to a profile.
	Object *string

	// Specifies the kind of object being added to a profile, such as
	// "Salesforce-Account."
	ObjectTypeName *string

	// The unique identifier of the ProfileObject generated by the service.
	ProfileObjectUniqueKey *string
	// contains filtered or unexported fields
}

A ProfileObject in a list of ProfileObjects.

type ListWorkflowsItem added in v1.16.0

type ListWorkflowsItem struct {

	// Creation timestamp for workflow.
	//
	// This member is required.
	CreatedAt *time.Time

	// Last updated timestamp for workflow.
	//
	// This member is required.
	LastUpdatedAt *time.Time

	// Status of workflow execution.
	//
	// This member is required.
	Status Status

	// Description for workflow execution status.
	//
	// This member is required.
	StatusDescription *string

	// Unique identifier for the workflow.
	//
	// This member is required.
	WorkflowId *string

	// The type of workflow. The only supported value is APPFLOW_INTEGRATION.
	//
	// This member is required.
	WorkflowType WorkflowType
	// contains filtered or unexported fields
}

A workflow in list of workflows.

type LogicalOperator added in v1.20.0

type LogicalOperator string
const (
	LogicalOperatorAnd LogicalOperator = "AND"
	LogicalOperatorOr  LogicalOperator = "OR"
)

Enum values for LogicalOperator

func (LogicalOperator) Values added in v1.20.0

func (LogicalOperator) Values() []LogicalOperator

Values returns all known values for LogicalOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type MarketoConnectorOperator added in v1.3.0

type MarketoConnectorOperator string
const (
	MarketoConnectorOperatorProjection          MarketoConnectorOperator = "PROJECTION"
	MarketoConnectorOperatorLessThan            MarketoConnectorOperator = "LESS_THAN"
	MarketoConnectorOperatorGreaterThan         MarketoConnectorOperator = "GREATER_THAN"
	MarketoConnectorOperatorBetween             MarketoConnectorOperator = "BETWEEN"
	MarketoConnectorOperatorAddition            MarketoConnectorOperator = "ADDITION"
	MarketoConnectorOperatorMultiplication      MarketoConnectorOperator = "MULTIPLICATION"
	MarketoConnectorOperatorDivision            MarketoConnectorOperator = "DIVISION"
	MarketoConnectorOperatorSubtraction         MarketoConnectorOperator = "SUBTRACTION"
	MarketoConnectorOperatorMaskAll             MarketoConnectorOperator = "MASK_ALL"
	MarketoConnectorOperatorMaskFirstN          MarketoConnectorOperator = "MASK_FIRST_N"
	MarketoConnectorOperatorMaskLastN           MarketoConnectorOperator = "MASK_LAST_N"
	MarketoConnectorOperatorValidateNonNull     MarketoConnectorOperator = "VALIDATE_NON_NULL"
	MarketoConnectorOperatorValidateNonZero     MarketoConnectorOperator = "VALIDATE_NON_ZERO"
	MarketoConnectorOperatorValidateNonNegative MarketoConnectorOperator = "VALIDATE_NON_NEGATIVE"
	MarketoConnectorOperatorValidateNumeric     MarketoConnectorOperator = "VALIDATE_NUMERIC"
	MarketoConnectorOperatorNoOp                MarketoConnectorOperator = "NO_OP"
)

Enum values for MarketoConnectorOperator

func (MarketoConnectorOperator) Values added in v1.3.0

Values returns all known values for MarketoConnectorOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type MarketoSourceProperties added in v1.3.0

type MarketoSourceProperties struct {

	// The object specified in the Marketo flow source.
	//
	// This member is required.
	Object *string
	// contains filtered or unexported fields
}

The properties that are applied when Marketo is being used as a source.

type MatchItem added in v1.5.0

type MatchItem struct {

	// A number between 0 and 1, where a higher score means higher similarity.
	// Examining match confidence scores lets you distinguish between groups of similar
	// records in which the system is highly confident (which you may decide to merge),
	// groups of similar records about which the system is uncertain (which you may
	// decide to have reviewed by a human), and groups of similar records that the
	// system deems to be unlikely (which you may decide to reject). Given confidence
	// scores vary as per the data input, it should not be used an absolute measure of
	// matching quality.
	ConfidenceScore *float64

	// The unique identifiers for this group of profiles that match.
	MatchId *string

	// A list of identifiers for profiles that match.
	ProfileIds []string
	// contains filtered or unexported fields
}

The Match group object.

type MatchType added in v1.26.0

type MatchType string
const (
	MatchTypeRuleBasedMatching MatchType = "RULE_BASED_MATCHING"
	MatchTypeMlBasedMatching   MatchType = "ML_BASED_MATCHING"
)

Enum values for MatchType

func (MatchType) Values added in v1.26.0

func (MatchType) Values() []MatchType

Values returns all known values for MatchType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type MatchingRequest added in v1.5.0

type MatchingRequest struct {

	// The flag that enables the matching process of duplicate profiles.
	//
	// This member is required.
	Enabled *bool

	// Configuration information about the auto-merging process.
	AutoMerging *AutoMerging

	// Configuration information for exporting Identity Resolution results, for
	// example, to an S3 bucket.
	ExportingConfig *ExportingConfig

	// The day and time when do you want to start the Identity Resolution Job every
	// week.
	JobSchedule *JobSchedule
	// contains filtered or unexported fields
}

The flag that enables the matching process of duplicate profiles.

type MatchingResponse added in v1.5.0

type MatchingResponse struct {

	// Configuration information about the auto-merging process.
	AutoMerging *AutoMerging

	// The flag that enables the matching process of duplicate profiles.
	Enabled *bool

	// Configuration information for exporting Identity Resolution results, for
	// example, to an S3 bucket.
	ExportingConfig *ExportingConfig

	// The day and time when do you want to start the Identity Resolution Job every
	// week.
	JobSchedule *JobSchedule
	// contains filtered or unexported fields
}

The flag that enables the matching process of duplicate profiles.

type MatchingRule added in v1.26.0

type MatchingRule struct {

	// A single rule level of the MatchRules . Configures how the rule-based matching
	// process should match profiles.
	//
	// This member is required.
	Rule []string
	// contains filtered or unexported fields
}

Specifies how does the rule-based matching process should match profiles. You can choose from the following attributes to build the matching Rule:

  • AccountNumber

  • Address.Address

  • Address.City

  • Address.Country

  • Address.County

  • Address.PostalCode

  • Address.State

  • Address.Province

  • BirthDate

  • BusinessName

  • EmailAddress

  • FirstName

  • Gender

  • LastName

  • MiddleName

  • PhoneNumber

  • Any customized profile attributes that start with the Attributes

type ObjectAttribute added in v1.44.0

type ObjectAttribute struct {

	// The operator used to compare an attribute against a list of values.
	//
	// This member is required.
	ComparisonOperator ComparisonOperator

	// A list of attribute values used for comparison.
	//
	// This member is required.
	Values []string

	// A field defined within an object type.
	FieldName *string

	// An attribute contained within a source object.
	Source *string
	// contains filtered or unexported fields
}

The criteria that a specific object attribute must meet to trigger the destination.

type ObjectFilter added in v1.8.0

type ObjectFilter struct {

	// A searchable identifier of a profile object. The predefined keys you can use to
	// search for _asset include: _assetId , _assetName , and _serialNumber . The
	// predefined keys you can use to search for _case include: _caseId . The
	// predefined keys you can use to search for _order include: _orderId .
	//
	// This member is required.
	KeyName *string

	// A list of key values.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

The filter applied to ListProfileObjects response to include profile objects with the specified index values.

type ObjectTypeField

type ObjectTypeField struct {

	// The content type of the field. Used for determining equality when searching.
	ContentType FieldContentType

	// A field of a ProfileObject. For example: _source.FirstName, where “_source” is
	// a ProfileObjectType of a Zendesk user and “FirstName” is a field in that
	// ObjectType.
	Source *string

	// The location of the data in the standard ProfileObject model. For example:
	// _profile.Address.PostalCode.
	Target *string
	// contains filtered or unexported fields
}

Represents a field in a ProfileObjectType.

type ObjectTypeKey

type ObjectTypeKey struct {

	// The reference for the key name of the fields map.
	FieldNames []string

	// The types of keys that a ProfileObject can have. Each ProfileObject can have
	// only 1 UNIQUE key but multiple PROFILE keys. PROFILE, ASSET, CASE, or ORDER
	// means that this key can be used to tie an object to a PROFILE, ASSET, CASE, or
	// ORDER respectively. UNIQUE means that it can be used to uniquely identify an
	// object. If a key a is marked as SECONDARY, it will be used to search for
	// profiles after all other PROFILE keys have been searched. A LOOKUP_ONLY key is
	// only used to match a profile but is not persisted to be used for searching of
	// the profile. A NEW_ONLY key is only used if the profile does not already exist
	// before the object is ingested, otherwise it is only used for matching objects to
	// profiles.
	StandardIdentifiers []StandardIdentifier
	// contains filtered or unexported fields
}

An object that defines the Key element of a ProfileObject. A Key is a special element that can be used to search for a customer profile.

type Operator added in v1.24.0

type Operator string
const (
	OperatorEqualTo     Operator = "EQUAL_TO"
	OperatorGreaterThan Operator = "GREATER_THAN"
	OperatorLessThan    Operator = "LESS_THAN"
	OperatorNotEqualTo  Operator = "NOT_EQUAL_TO"
)

Enum values for Operator

func (Operator) Values added in v1.24.0

func (Operator) Values() []Operator

Values returns all known values for Operator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type OperatorPropertiesKeys added in v1.3.0

type OperatorPropertiesKeys string
const (
	OperatorPropertiesKeysValue                    OperatorPropertiesKeys = "VALUE"
	OperatorPropertiesKeysValues                   OperatorPropertiesKeys = "VALUES"
	OperatorPropertiesKeysDataType                 OperatorPropertiesKeys = "DATA_TYPE"
	OperatorPropertiesKeysUpperBound               OperatorPropertiesKeys = "UPPER_BOUND"
	OperatorPropertiesKeysLowerBound               OperatorPropertiesKeys = "LOWER_BOUND"
	OperatorPropertiesKeysSourceDataType           OperatorPropertiesKeys = "SOURCE_DATA_TYPE"
	OperatorPropertiesKeysDestinationDataType      OperatorPropertiesKeys = "DESTINATION_DATA_TYPE"
	OperatorPropertiesKeysValidationAction         OperatorPropertiesKeys = "VALIDATION_ACTION"
	OperatorPropertiesKeysMaskValue                OperatorPropertiesKeys = "MASK_VALUE"
	OperatorPropertiesKeysMaskLength               OperatorPropertiesKeys = "MASK_LENGTH"
	OperatorPropertiesKeysTruncateLength           OperatorPropertiesKeys = "TRUNCATE_LENGTH"
	OperatorPropertiesKeysMathOperationFieldsOrder OperatorPropertiesKeys = "MATH_OPERATION_FIELDS_ORDER"
	OperatorPropertiesKeysConcatFormat             OperatorPropertiesKeys = "CONCAT_FORMAT"
	OperatorPropertiesKeysSubfieldCategoryMap      OperatorPropertiesKeys = "SUBFIELD_CATEGORY_MAP"
)

Enum values for OperatorPropertiesKeys

func (OperatorPropertiesKeys) Values added in v1.3.0

Values returns all known values for OperatorPropertiesKeys. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type PartyType

type PartyType string
const (
	PartyTypeIndividual PartyType = "INDIVIDUAL"
	PartyTypeBusiness   PartyType = "BUSINESS"
	PartyTypeOther      PartyType = "OTHER"
)

Enum values for PartyType

func (PartyType) Values

func (PartyType) Values() []PartyType

Values returns all known values for PartyType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Period added in v1.44.0

type Period struct {

	// The unit of time.
	//
	// This member is required.
	Unit PeriodUnit

	// The amount of time of the specified unit.
	//
	// This member is required.
	Value *int32

	// The maximum allowed number of destination invocations per profile.
	MaxInvocationsPerProfile *int32

	// If set to true, there is no limit on the number of destination invocations per
	// profile. The default is false.
	Unlimited bool
	// contains filtered or unexported fields
}

Defines a limit and the time period during which it is enforced.

type PeriodUnit added in v1.44.0

type PeriodUnit string
const (
	PeriodUnitHours  PeriodUnit = "HOURS"
	PeriodUnitDays   PeriodUnit = "DAYS"
	PeriodUnitWeeks  PeriodUnit = "WEEKS"
	PeriodUnitMonths PeriodUnit = "MONTHS"
)

Enum values for PeriodUnit

func (PeriodUnit) Values added in v1.44.0

func (PeriodUnit) Values() []PeriodUnit

Values returns all known values for PeriodUnit. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Profile

type Profile struct {

	// An account number that you have given to the customer.
	AccountNumber *string

	// Any additional information relevant to the customer’s profile.
	AdditionalInformation *string

	// A generic address associated with the customer that is not mailing, shipping,
	// or billing.
	Address *Address

	// A key value pair of attributes of a customer profile.
	Attributes map[string]string

	// The customer’s billing address.
	BillingAddress *Address

	// The customer’s birth date.
	BirthDate *string

	// The customer’s business email address.
	BusinessEmailAddress *string

	// The name of the customer’s business.
	BusinessName *string

	// The customer’s home phone number.
	BusinessPhoneNumber *string

	// The customer’s email address, which has not been specified as a personal or
	// business address.
	EmailAddress *string

	// The customer’s first name.
	FirstName *string

	// A list of items used to find a profile returned in a [SearchProfiles] response. An item is a
	// key-value(s) pair that matches an attribute in the profile.
	//
	// If the optional AdditionalSearchKeys parameter was included in the [SearchProfiles] request,
	// the FoundByItems list should be interpreted based on the LogicalOperator used
	// in the request:
	//
	//   - AND - The profile included in the response matched all of the search keys
	//   specified in the request. The FoundByItems will include all of the
	//   key-value(s) pairs that were specified in the request (as this is a requirement
	//   of AND search logic).
	//
	//   - OR - The profile included in the response matched at least one of the search
	//   keys specified in the request. The FoundByItems will include each of the
	//   key-value(s) pairs that the profile was found by.
	//
	// The OR relationship is the default behavior if the LogicalOperator parameter is
	// not included in the [SearchProfiles]request.
	//
	// [SearchProfiles]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_SearchProfiles.html
	FoundByItems []FoundByKeyValue

	// The gender with which the customer identifies.
	//
	// Deprecated: This member has been deprecated.
	Gender Gender

	// An alternative to Gender which accepts any string as input.
	GenderString *string

	// The customer’s home phone number.
	HomePhoneNumber *string

	// The customer’s last name.
	LastName *string

	// The customer’s mailing address.
	MailingAddress *Address

	// The customer’s middle name.
	MiddleName *string

	// The customer’s mobile phone number.
	MobilePhoneNumber *string

	// The type of profile used to describe the customer.
	//
	// Deprecated: This member has been deprecated.
	PartyType PartyType

	// An alternative to PartyType which accepts any string as input.
	PartyTypeString *string

	// The customer’s personal email address.
	PersonalEmailAddress *string

	// The customer's phone number, which has not been specified as a mobile, home, or
	// business number.
	PhoneNumber *string

	// The unique identifier of a customer profile.
	ProfileId *string

	// The customer’s shipping address.
	ShippingAddress *Address
	// contains filtered or unexported fields
}

The standard profile of a customer.

type ProfileAttributes added in v1.43.0

type ProfileAttributes struct {

	// A field to describe values to segment on within account number.
	AccountNumber *ProfileDimension

	// A field to describe values to segment on within additional information.
	AdditionalInformation *ExtraLengthValueProfileDimension

	// A field to describe values to segment on within address.
	Address *AddressDimension

	// A field to describe values to segment on within attributes.
	Attributes map[string]AttributeDimension

	// A field to describe values to segment on within billing address.
	BillingAddress *AddressDimension

	// A field to describe values to segment on within birthDate.
	BirthDate *DateDimension

	// A field to describe values to segment on within business email address.
	BusinessEmailAddress *ProfileDimension

	// A field to describe values to segment on within business name.
	BusinessName *ProfileDimension

	// A field to describe values to segment on within business phone number.
	BusinessPhoneNumber *ProfileDimension

	// A field to describe values to segment on within email address.
	EmailAddress *ProfileDimension

	// A field to describe values to segment on within first name.
	FirstName *ProfileDimension

	// A field to describe values to segment on within genderString.
	GenderString *ProfileDimension

	// A field to describe values to segment on within home phone number.
	HomePhoneNumber *ProfileDimension

	// A field to describe values to segment on within last name.
	LastName *ProfileDimension

	// A field to describe values to segment on within mailing address.
	MailingAddress *AddressDimension

	// A field to describe values to segment on within middle name.
	MiddleName *ProfileDimension

	// A field to describe values to segment on within mobile phone number.
	MobilePhoneNumber *ProfileDimension

	// A field to describe values to segment on within partyTypeString.
	PartyTypeString *ProfileDimension

	// A field to describe values to segment on within personal email address.
	PersonalEmailAddress *ProfileDimension

	// A field to describe values to segment on within phone number.
	PhoneNumber *ProfileDimension

	// A field to describe values to segment on within shipping address.
	ShippingAddress *AddressDimension
	// contains filtered or unexported fields
}

The object used to segment on attributes within the customer profile.

type ProfileDimension added in v1.43.0

type ProfileDimension struct {

	// The action to segment on.
	//
	// This member is required.
	DimensionType StringDimensionType

	// The values to apply the DimensionType on.
	//
	// This member is required.
	Values []string
	// contains filtered or unexported fields
}

Object to hold the dimensions of a profile's fields to segment on.

type ProfileQueryFailures added in v1.43.0

type ProfileQueryFailures struct {

	// A message describing the failure.
	//
	// This member is required.
	Message *string

	// The profile id the failure belongs to.
	//
	// This member is required.
	ProfileId *string

	// The status describing the failure.
	Status *int32
	// contains filtered or unexported fields
}

Object that holds failures for membership.

type ProfileQueryResult added in v1.43.0

type ProfileQueryResult struct {

	// The profile id the result belongs to.
	//
	// This member is required.
	ProfileId *string

	// Describes whether the profile was absent or present in the segment.
	//
	// This member is required.
	QueryResult QueryResult

	// The standard profile of a customer.
	Profile *Profile
	// contains filtered or unexported fields
}

Object that holds the results for membership.

type QueryResult added in v1.43.0

type QueryResult string
const (
	QueryResultPresent QueryResult = "PRESENT"
	QueryResultAbsent  QueryResult = "ABSENT"
)

Enum values for QueryResult

func (QueryResult) Values added in v1.43.0

func (QueryResult) Values() []QueryResult

Values returns all known values for QueryResult. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Range added in v1.24.0

type Range struct {

	// The unit of time.
	//
	// This member is required.
	Unit Unit

	// The amount of time of the specified unit.
	//
	// This member is required.
	Value *int32
	// contains filtered or unexported fields
}

The relative time period over which data is included in the aggregation.

type RangeOverride added in v1.43.0

type RangeOverride struct {

	// The start time of when to include objects.
	//
	// This member is required.
	Start *int32

	// The unit for start and end.
	//
	// This member is required.
	Unit RangeUnit

	// The end time of when to include objects.
	End int32
	// contains filtered or unexported fields
}

Overrides the original range on a calculated attribute definition.

type RangeUnit added in v1.43.0

type RangeUnit string
const (
	RangeUnitDays RangeUnit = "DAYS"
)

Enum values for RangeUnit

func (RangeUnit) Values added in v1.43.0

func (RangeUnit) Values() []RangeUnit

Values returns all known values for RangeUnit. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ResourceNotFoundException

type ResourceNotFoundException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

The requested resource does not exist, or access was denied.

func (*ResourceNotFoundException) Error

func (e *ResourceNotFoundException) Error() string

func (*ResourceNotFoundException) ErrorCode

func (e *ResourceNotFoundException) ErrorCode() string

func (*ResourceNotFoundException) ErrorFault

func (*ResourceNotFoundException) ErrorMessage

func (e *ResourceNotFoundException) ErrorMessage() string

type RuleBasedMatchingRequest added in v1.26.0

type RuleBasedMatchingRequest struct {

	// The flag that enables the rule-based matching process of duplicate profiles.
	//
	// This member is required.
	Enabled *bool

	// Configures information about the AttributeTypesSelector where the rule-based
	// identity resolution uses to match profiles.
	AttributeTypesSelector *AttributeTypesSelector

	// How the auto-merging process should resolve conflicts between different
	// profiles.
	ConflictResolution *ConflictResolution

	// Configuration information about the S3 bucket where Identity Resolution Jobs
	// writes result files.
	//
	// You need to give Customer Profiles service principal write permission to your
	// S3 bucket. Otherwise, you'll get an exception in the API response. For an
	// example policy, see [Amazon Connect Customer Profiles cross-service confused deputy prevention].
	//
	// [Amazon Connect Customer Profiles cross-service confused deputy prevention]: https://docs.aws.amazon.com/connect/latest/adminguide/cross-service-confused-deputy-prevention.html#customer-profiles-cross-service
	ExportingConfig *ExportingConfig

	// Configures how the rule-based matching process should match profiles. You can
	// have up to 15 MatchingRule in the MatchingRules .
	MatchingRules []MatchingRule

	// Indicates the maximum allowed rule level.
	MaxAllowedRuleLevelForMatching *int32

	// [MatchingRule]
	//
	// [MatchingRule]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_MatchingRule.html
	MaxAllowedRuleLevelForMerging *int32
	// contains filtered or unexported fields
}

The request to enable the rule-based matching.

type RuleBasedMatchingResponse added in v1.26.0

type RuleBasedMatchingResponse struct {

	// Configures information about the AttributeTypesSelector where the rule-based
	// identity resolution uses to match profiles.
	AttributeTypesSelector *AttributeTypesSelector

	// How the auto-merging process should resolve conflicts between different
	// profiles.
	ConflictResolution *ConflictResolution

	// The flag that enables the rule-based matching process of duplicate profiles.
	Enabled *bool

	// Configuration information about the S3 bucket where Identity Resolution Jobs
	// writes result files.
	//
	// You need to give Customer Profiles service principal write permission to your
	// S3 bucket. Otherwise, you'll get an exception in the API response. For an
	// example policy, see [Amazon Connect Customer Profiles cross-service confused deputy prevention].
	//
	// [Amazon Connect Customer Profiles cross-service confused deputy prevention]: https://docs.aws.amazon.com/connect/latest/adminguide/cross-service-confused-deputy-prevention.html#customer-profiles-cross-service
	ExportingConfig *ExportingConfig

	// Configures how the rule-based matching process should match profiles. You can
	// have up to 15 MatchingRule in the MatchingRules .
	MatchingRules []MatchingRule

	// Indicates the maximum allowed rule level.
	MaxAllowedRuleLevelForMatching *int32

	// [MatchingRule]
	//
	// [MatchingRule]: https://docs.aws.amazon.com/customerprofiles/latest/APIReference/API_MatchingRule.html
	MaxAllowedRuleLevelForMerging *int32

	// PENDING
	//
	//   - The first status after configuration a rule-based matching rule. If it is
	//   an existing domain, the rule-based Identity Resolution waits one hour before
	//   creating the matching rule. If it is a new domain, the system will skip the
	//   PENDING stage.
	//
	// IN_PROGRESS
	//
	//   - The system is creating the rule-based matching rule. Under this status, the
	//   system is evaluating the existing data and you can no longer change the
	//   Rule-based matching configuration.
	//
	// ACTIVE
	//
	//   - The rule is ready to use. You can change the rule a day after the status is
	//   in ACTIVE .
	Status RuleBasedMatchingStatus
	// contains filtered or unexported fields
}

The response of the Rule-based matching request.

type RuleBasedMatchingStatus added in v1.26.0

type RuleBasedMatchingStatus string
const (
	RuleBasedMatchingStatusPending    RuleBasedMatchingStatus = "PENDING"
	RuleBasedMatchingStatusInProgress RuleBasedMatchingStatus = "IN_PROGRESS"
	RuleBasedMatchingStatusActive     RuleBasedMatchingStatus = "ACTIVE"
)

Enum values for RuleBasedMatchingStatus

func (RuleBasedMatchingStatus) Values added in v1.26.0

Values returns all known values for RuleBasedMatchingStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type S3ConnectorOperator added in v1.3.0

type S3ConnectorOperator string
const (
	S3ConnectorOperatorProjection           S3ConnectorOperator = "PROJECTION"
	S3ConnectorOperatorLessThan             S3ConnectorOperator = "LESS_THAN"
	S3ConnectorOperatorGreaterThan          S3ConnectorOperator = "GREATER_THAN"
	S3ConnectorOperatorBetween              S3ConnectorOperator = "BETWEEN"
	S3ConnectorOperatorLessThanOrEqualTo    S3ConnectorOperator = "LESS_THAN_OR_EQUAL_TO"
	S3ConnectorOperatorGreaterThanOrEqualTo S3ConnectorOperator = "GREATER_THAN_OR_EQUAL_TO"
	S3ConnectorOperatorEqualTo              S3ConnectorOperator = "EQUAL_TO"
	S3ConnectorOperatorNotEqualTo           S3ConnectorOperator = "NOT_EQUAL_TO"
	S3ConnectorOperatorAddition             S3ConnectorOperator = "ADDITION"
	S3ConnectorOperatorMultiplication       S3ConnectorOperator = "MULTIPLICATION"
	S3ConnectorOperatorDivision             S3ConnectorOperator = "DIVISION"
	S3ConnectorOperatorSubtraction          S3ConnectorOperator = "SUBTRACTION"
	S3ConnectorOperatorMaskAll              S3ConnectorOperator = "MASK_ALL"
	S3ConnectorOperatorMaskFirstN           S3ConnectorOperator = "MASK_FIRST_N"
	S3ConnectorOperatorMaskLastN            S3ConnectorOperator = "MASK_LAST_N"
	S3ConnectorOperatorValidateNonNull      S3ConnectorOperator = "VALIDATE_NON_NULL"
	S3ConnectorOperatorValidateNonZero      S3ConnectorOperator = "VALIDATE_NON_ZERO"
	S3ConnectorOperatorValidateNonNegative  S3ConnectorOperator = "VALIDATE_NON_NEGATIVE"
	S3ConnectorOperatorValidateNumeric      S3ConnectorOperator = "VALIDATE_NUMERIC"
	S3ConnectorOperatorNoOp                 S3ConnectorOperator = "NO_OP"
)

Enum values for S3ConnectorOperator

func (S3ConnectorOperator) Values added in v1.3.0

Values returns all known values for S3ConnectorOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type S3ExportingConfig added in v1.12.0

type S3ExportingConfig struct {

	// The name of the S3 bucket where Identity Resolution Jobs write result files.
	//
	// This member is required.
	S3BucketName *string

	// The S3 key name of the location where Identity Resolution Jobs write result
	// files.
	S3KeyName *string
	// contains filtered or unexported fields
}

Configuration information about the S3 bucket where Identity Resolution Jobs write result files.

type S3ExportingLocation added in v1.12.0

type S3ExportingLocation struct {

	// The name of the S3 bucket name where Identity Resolution Jobs write result
	// files.
	S3BucketName *string

	// The S3 key name of the location where Identity Resolution Jobs write result
	// files.
	S3KeyName *string
	// contains filtered or unexported fields
}

The S3 location where Identity Resolution Jobs write result files.

type S3SourceProperties added in v1.3.0

type S3SourceProperties struct {

	// The Amazon S3 bucket name where the source files are stored.
	//
	// This member is required.
	BucketName *string

	// The object key for the Amazon S3 bucket in which the source files are stored.
	BucketPrefix *string
	// contains filtered or unexported fields
}

The properties that are applied when Amazon S3 is being used as the flow source.

type SalesforceConnectorOperator added in v1.3.0

type SalesforceConnectorOperator string
const (
	SalesforceConnectorOperatorProjection           SalesforceConnectorOperator = "PROJECTION"
	SalesforceConnectorOperatorLessThan             SalesforceConnectorOperator = "LESS_THAN"
	SalesforceConnectorOperatorContains             SalesforceConnectorOperator = "CONTAINS"
	SalesforceConnectorOperatorGreaterThan          SalesforceConnectorOperator = "GREATER_THAN"
	SalesforceConnectorOperatorBetween              SalesforceConnectorOperator = "BETWEEN"
	SalesforceConnectorOperatorLessThanOrEqualTo    SalesforceConnectorOperator = "LESS_THAN_OR_EQUAL_TO"
	SalesforceConnectorOperatorGreaterThanOrEqualTo SalesforceConnectorOperator = "GREATER_THAN_OR_EQUAL_TO"
	SalesforceConnectorOperatorEqualTo              SalesforceConnectorOperator = "EQUAL_TO"
	SalesforceConnectorOperatorNotEqualTo           SalesforceConnectorOperator = "NOT_EQUAL_TO"
	SalesforceConnectorOperatorAddition             SalesforceConnectorOperator = "ADDITION"
	SalesforceConnectorOperatorMultiplication       SalesforceConnectorOperator = "MULTIPLICATION"
	SalesforceConnectorOperatorDivision             SalesforceConnectorOperator = "DIVISION"
	SalesforceConnectorOperatorSubtraction          SalesforceConnectorOperator = "SUBTRACTION"
	SalesforceConnectorOperatorMaskAll              SalesforceConnectorOperator = "MASK_ALL"
	SalesforceConnectorOperatorMaskFirstN           SalesforceConnectorOperator = "MASK_FIRST_N"
	SalesforceConnectorOperatorMaskLastN            SalesforceConnectorOperator = "MASK_LAST_N"
	SalesforceConnectorOperatorValidateNonNull      SalesforceConnectorOperator = "VALIDATE_NON_NULL"
	SalesforceConnectorOperatorValidateNonZero      SalesforceConnectorOperator = "VALIDATE_NON_ZERO"
	SalesforceConnectorOperatorValidateNonNegative  SalesforceConnectorOperator = "VALIDATE_NON_NEGATIVE"
	SalesforceConnectorOperatorValidateNumeric      SalesforceConnectorOperator = "VALIDATE_NUMERIC"
	SalesforceConnectorOperatorNoOp                 SalesforceConnectorOperator = "NO_OP"
)

Enum values for SalesforceConnectorOperator

func (SalesforceConnectorOperator) Values added in v1.3.0

Values returns all known values for SalesforceConnectorOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type SalesforceSourceProperties added in v1.3.0

type SalesforceSourceProperties struct {

	// The object specified in the Salesforce flow source.
	//
	// This member is required.
	Object *string

	// The flag that enables dynamic fetching of new (recently added) fields in the
	// Salesforce objects while running a flow.
	EnableDynamicFieldUpdate bool

	// Indicates whether Amazon AppFlow includes deleted files in the flow run.
	IncludeDeletedRecords bool
	// contains filtered or unexported fields
}

The properties that are applied when Salesforce is being used as a source.

type ScheduledTriggerProperties added in v1.3.0

type ScheduledTriggerProperties struct {

	// The scheduling expression that determines the rate at which the schedule will
	// run, for example rate (5 minutes).
	//
	// This member is required.
	ScheduleExpression *string

	// Specifies whether a scheduled flow has an incremental data transfer or a
	// complete data transfer for each flow run.
	DataPullMode DataPullMode

	// Specifies the date range for the records to import from the connector in the
	// first flow run.
	FirstExecutionFrom *time.Time

	// Specifies the scheduled end time for a scheduled-trigger flow.
	ScheduleEndTime *time.Time

	// Specifies the optional offset that is added to the time interval for a
	// schedule-triggered flow.
	ScheduleOffset *int64

	// Specifies the scheduled start time for a scheduled-trigger flow.
	ScheduleStartTime *time.Time

	// Specifies the time zone used when referring to the date and time of a
	// scheduled-triggered flow, such as America/New_York.
	Timezone *string
	// contains filtered or unexported fields
}

Specifies the configuration details of a scheduled-trigger flow that you define. Currently, these settings only apply to the scheduled-trigger type.

type SegmentDefinitionItem added in v1.43.0

type SegmentDefinitionItem struct {

	// When the segment definition was created.
	CreatedAt *time.Time

	// The description of the segment definition.
	Description *string

	// Display name of the segment definition.
	DisplayName *string

	// The arn of the segment definition.
	SegmentDefinitionArn *string

	// Name of the segment definition.
	SegmentDefinitionName *string

	// The tags belonging to the segment definition.
	Tags map[string]string
	// contains filtered or unexported fields
}

Object holding the segment definition fields.

type SegmentGroup added in v1.43.0

type SegmentGroup struct {

	// Holds the list of groups within the segment definition.
	Groups []Group

	// Defines whether to include or exclude the profiles that fit the segment
	// criteria.
	Include IncludeOptions
	// contains filtered or unexported fields
}

Contains all groups of the segment definition.

type SegmentGroupStructure added in v1.43.0

type SegmentGroupStructure struct {

	// Holds the list of groups within the segment definition.
	Groups []Group

	// Define whether to include or exclude the profiles that fit the segment criteria.
	Include IncludeOptions
	// contains filtered or unexported fields
}

Contains all groups of the segment definition.

type SegmentSnapshotStatus added in v1.43.0

type SegmentSnapshotStatus string
const (
	SegmentSnapshotStatusCompleted  SegmentSnapshotStatus = "COMPLETED"
	SegmentSnapshotStatusInProgress SegmentSnapshotStatus = "IN_PROGRESS"
	SegmentSnapshotStatusFailed     SegmentSnapshotStatus = "FAILED"
)

Enum values for SegmentSnapshotStatus

func (SegmentSnapshotStatus) Values added in v1.43.0

Values returns all known values for SegmentSnapshotStatus. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ServiceNowConnectorOperator added in v1.3.0

type ServiceNowConnectorOperator string
const (
	ServiceNowConnectorOperatorProjection           ServiceNowConnectorOperator = "PROJECTION"
	ServiceNowConnectorOperatorContains             ServiceNowConnectorOperator = "CONTAINS"
	ServiceNowConnectorOperatorLessThan             ServiceNowConnectorOperator = "LESS_THAN"
	ServiceNowConnectorOperatorGreaterThan          ServiceNowConnectorOperator = "GREATER_THAN"
	ServiceNowConnectorOperatorBetween              ServiceNowConnectorOperator = "BETWEEN"
	ServiceNowConnectorOperatorLessThanOrEqualTo    ServiceNowConnectorOperator = "LESS_THAN_OR_EQUAL_TO"
	ServiceNowConnectorOperatorGreaterThanOrEqualTo ServiceNowConnectorOperator = "GREATER_THAN_OR_EQUAL_TO"
	ServiceNowConnectorOperatorEqualTo              ServiceNowConnectorOperator = "EQUAL_TO"
	ServiceNowConnectorOperatorNotEqualTo           ServiceNowConnectorOperator = "NOT_EQUAL_TO"
	ServiceNowConnectorOperatorAddition             ServiceNowConnectorOperator = "ADDITION"
	ServiceNowConnectorOperatorMultiplication       ServiceNowConnectorOperator = "MULTIPLICATION"
	ServiceNowConnectorOperatorDivision             ServiceNowConnectorOperator = "DIVISION"
	ServiceNowConnectorOperatorSubtraction          ServiceNowConnectorOperator = "SUBTRACTION"
	ServiceNowConnectorOperatorMaskAll              ServiceNowConnectorOperator = "MASK_ALL"
	ServiceNowConnectorOperatorMaskFirstN           ServiceNowConnectorOperator = "MASK_FIRST_N"
	ServiceNowConnectorOperatorMaskLastN            ServiceNowConnectorOperator = "MASK_LAST_N"
	ServiceNowConnectorOperatorValidateNonNull      ServiceNowConnectorOperator = "VALIDATE_NON_NULL"
	ServiceNowConnectorOperatorValidateNonZero      ServiceNowConnectorOperator = "VALIDATE_NON_ZERO"
	ServiceNowConnectorOperatorValidateNonNegative  ServiceNowConnectorOperator = "VALIDATE_NON_NEGATIVE"
	ServiceNowConnectorOperatorValidateNumeric      ServiceNowConnectorOperator = "VALIDATE_NUMERIC"
	ServiceNowConnectorOperatorNoOp                 ServiceNowConnectorOperator = "NO_OP"
)

Enum values for ServiceNowConnectorOperator

func (ServiceNowConnectorOperator) Values added in v1.3.0

Values returns all known values for ServiceNowConnectorOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ServiceNowSourceProperties added in v1.3.0

type ServiceNowSourceProperties struct {

	// The object specified in the ServiceNow flow source.
	//
	// This member is required.
	Object *string
	// contains filtered or unexported fields
}

The properties that are applied when ServiceNow is being used as a source.

type SourceConnectorProperties added in v1.3.0

type SourceConnectorProperties struct {

	// The properties that are applied when Marketo is being used as a source.
	Marketo *MarketoSourceProperties

	// The properties that are applied when Amazon S3 is being used as the flow source.
	S3 *S3SourceProperties

	// The properties that are applied when Salesforce is being used as a source.
	Salesforce *SalesforceSourceProperties

	// The properties that are applied when ServiceNow is being used as a source.
	ServiceNow *ServiceNowSourceProperties

	// The properties that are applied when using Zendesk as a flow source.
	Zendesk *ZendeskSourceProperties
	// contains filtered or unexported fields
}

Specifies the information that is required to query a particular Amazon AppFlow connector. Customer Profiles supports Salesforce, Zendesk, Marketo, ServiceNow and Amazon S3.

type SourceConnectorType added in v1.3.0

type SourceConnectorType string
const (
	SourceConnectorTypeSalesforce SourceConnectorType = "Salesforce"
	SourceConnectorTypeMarketo    SourceConnectorType = "Marketo"
	SourceConnectorTypeZendesk    SourceConnectorType = "Zendesk"
	SourceConnectorTypeServicenow SourceConnectorType = "Servicenow"
	SourceConnectorTypeS3         SourceConnectorType = "S3"
)

Enum values for SourceConnectorType

func (SourceConnectorType) Values added in v1.3.0

Values returns all known values for SourceConnectorType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type SourceFlowConfig added in v1.3.0

type SourceFlowConfig struct {

	// The type of connector, such as Salesforce, Marketo, and so on.
	//
	// This member is required.
	ConnectorType SourceConnectorType

	// Specifies the information that is required to query a particular source
	// connector.
	//
	// This member is required.
	SourceConnectorProperties *SourceConnectorProperties

	// The name of the AppFlow connector profile. This name must be unique for each
	// connector profile in the AWS account.
	ConnectorProfileName *string

	// Defines the configuration for a scheduled incremental data pull. If a valid
	// configuration is provided, the fields specified in the configuration are used
	// when querying for the incremental data pull.
	IncrementalPullConfig *IncrementalPullConfig
	// contains filtered or unexported fields
}

Contains information about the configuration of the source connector used in the flow.

type SourceSegment added in v1.43.0

type SourceSegment struct {

	// The unique name of the segment definition.
	SegmentDefinitionName *string
	// contains filtered or unexported fields
}

The source segments to build off of.

type StandardIdentifier

type StandardIdentifier string
const (
	StandardIdentifierProfile             StandardIdentifier = "PROFILE"
	StandardIdentifierAsset               StandardIdentifier = "ASSET"
	StandardIdentifierCase                StandardIdentifier = "CASE"
	StandardIdentifierOrder               StandardIdentifier = "ORDER"
	StandardIdentifierCommunicationRecord StandardIdentifier = "COMMUNICATION_RECORD"
	StandardIdentifierUnique              StandardIdentifier = "UNIQUE"
	StandardIdentifierSecondary           StandardIdentifier = "SECONDARY"
	StandardIdentifierLookupOnly          StandardIdentifier = "LOOKUP_ONLY"
	StandardIdentifierNewOnly             StandardIdentifier = "NEW_ONLY"
)

Enum values for StandardIdentifier

func (StandardIdentifier) Values

Values returns all known values for StandardIdentifier. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Statistic added in v1.24.0

type Statistic string
const (
	StatisticFirstOccurrence Statistic = "FIRST_OCCURRENCE"
	StatisticLastOccurrence  Statistic = "LAST_OCCURRENCE"
	StatisticCount           Statistic = "COUNT"
	StatisticSum             Statistic = "SUM"
	StatisticMinimum         Statistic = "MINIMUM"
	StatisticMaximum         Statistic = "MAXIMUM"
	StatisticAverage         Statistic = "AVERAGE"
	StatisticMaxOccurrence   Statistic = "MAX_OCCURRENCE"
)

Enum values for Statistic

func (Statistic) Values added in v1.24.0

func (Statistic) Values() []Statistic

Values returns all known values for Statistic. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Status added in v1.16.0

type Status string
const (
	StatusNotStarted Status = "NOT_STARTED"
	StatusInProgress Status = "IN_PROGRESS"
	StatusComplete   Status = "COMPLETE"
	StatusFailed     Status = "FAILED"
	StatusSplit      Status = "SPLIT"
	StatusRetry      Status = "RETRY"
	StatusCancelled  Status = "CANCELLED"
)

Enum values for Status

func (Status) Values added in v1.16.0

func (Status) Values() []Status

Values returns all known values for Status. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type StringDimensionType added in v1.43.0

type StringDimensionType string
const (
	StringDimensionTypeInclusive  StringDimensionType = "INCLUSIVE"
	StringDimensionTypeExclusive  StringDimensionType = "EXCLUSIVE"
	StringDimensionTypeContains   StringDimensionType = "CONTAINS"
	StringDimensionTypeBeginsWith StringDimensionType = "BEGINS_WITH"
	StringDimensionTypeEndsWith   StringDimensionType = "ENDS_WITH"
)

Enum values for StringDimensionType

func (StringDimensionType) Values added in v1.43.0

Values returns all known values for StringDimensionType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Task added in v1.3.0

type Task struct {

	// The source fields to which a particular task is applied.
	//
	// This member is required.
	SourceFields []string

	// Specifies the particular task implementation that Amazon AppFlow performs.
	//
	// This member is required.
	TaskType TaskType

	// The operation to be performed on the provided source fields.
	ConnectorOperator *ConnectorOperator

	// A field in a destination connector, or a field value against which Amazon
	// AppFlow validates a source field.
	DestinationField *string

	// A map used to store task-related information. The service looks for particular
	// information based on the TaskType.
	TaskProperties map[string]string
	// contains filtered or unexported fields
}

A class for modeling different type of tasks. Task implementation varies based on the TaskType.

type TaskType added in v1.3.0

type TaskType string
const (
	TaskTypeArithmetic TaskType = "Arithmetic"
	TaskTypeFilter     TaskType = "Filter"
	TaskTypeMap        TaskType = "Map"
	TaskTypeMask       TaskType = "Mask"
	TaskTypeMerge      TaskType = "Merge"
	TaskTypeTruncate   TaskType = "Truncate"
	TaskTypeValidate   TaskType = "Validate"
)

Enum values for TaskType

func (TaskType) Values added in v1.3.0

func (TaskType) Values() []TaskType

Values returns all known values for TaskType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Threshold added in v1.24.0

type Threshold struct {

	// The operator of the threshold.
	//
	// This member is required.
	Operator Operator

	// The value of the threshold.
	//
	// This member is required.
	Value *string
	// contains filtered or unexported fields
}

The threshold for the calculated attribute.

type ThrottlingException

type ThrottlingException struct {
	Message *string

	ErrorCodeOverride *string
	// contains filtered or unexported fields
}

You exceeded the maximum number of requests.

func (*ThrottlingException) Error

func (e *ThrottlingException) Error() string

func (*ThrottlingException) ErrorCode

func (e *ThrottlingException) ErrorCode() string

func (*ThrottlingException) ErrorFault

func (e *ThrottlingException) ErrorFault() smithy.ErrorFault

func (*ThrottlingException) ErrorMessage

func (e *ThrottlingException) ErrorMessage() string

type TriggerConfig added in v1.3.0

type TriggerConfig struct {

	// Specifies the type of flow trigger. It can be OnDemand, Scheduled, or Event.
	//
	// This member is required.
	TriggerType TriggerType

	// Specifies the configuration details of a schedule-triggered flow that you
	// define. Currently, these settings only apply to the Scheduled trigger type.
	TriggerProperties *TriggerProperties
	// contains filtered or unexported fields
}

The trigger settings that determine how and when Amazon AppFlow runs the specified flow.

type TriggerProperties added in v1.3.0

type TriggerProperties struct {

	// Specifies the configuration details of a schedule-triggered flow that you
	// define.
	Scheduled *ScheduledTriggerProperties
	// contains filtered or unexported fields
}

Specifies the configuration details that control the trigger for a flow. Currently, these settings only apply to the Scheduled trigger type.

type TriggerType added in v1.3.0

type TriggerType string
const (
	TriggerTypeScheduled TriggerType = "Scheduled"
	TriggerTypeEvent     TriggerType = "Event"
	TriggerTypeOndemand  TriggerType = "OnDemand"
)

Enum values for TriggerType

func (TriggerType) Values added in v1.3.0

func (TriggerType) Values() []TriggerType

Values returns all known values for TriggerType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Type added in v1.43.0

type Type string
const (
	TypeAll  Type = "ALL"
	TypeAny  Type = "ANY"
	TypeNone Type = "NONE"
)

Enum values for Type

func (Type) Values added in v1.43.0

func (Type) Values() []Type

Values returns all known values for Type. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type Unit added in v1.24.0

type Unit string
const (
	UnitDays Unit = "DAYS"
)

Enum values for Unit

func (Unit) Values added in v1.24.0

func (Unit) Values() []Unit

Values returns all known values for Unit. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type UnknownUnionMember added in v1.43.0

type UnknownUnionMember struct {
	Tag   string
	Value []byte
	// contains filtered or unexported fields
}

UnknownUnionMember is returned when a union member is returned over the wire, but has an unknown tag.

type UpdateAddress

type UpdateAddress struct {

	// The first line of a customer address.
	Address1 *string

	// The second line of a customer address.
	Address2 *string

	// The third line of a customer address.
	Address3 *string

	// The fourth line of a customer address.
	Address4 *string

	// The city in which a customer lives.
	City *string

	// The country in which a customer lives.
	Country *string

	// The county in which a customer lives.
	County *string

	// The postal code of a customer address.
	PostalCode *string

	// The province in which a customer lives.
	Province *string

	// The state in which a customer lives.
	State *string
	// contains filtered or unexported fields
}

Updates associated with the address properties of a customer profile.

type WorkflowAttributes added in v1.16.0

type WorkflowAttributes struct {

	// Workflow attributes specific to APPFLOW_INTEGRATION workflow.
	AppflowIntegration *AppflowIntegrationWorkflowAttributes
	// contains filtered or unexported fields
}

Structure to hold workflow attributes.

type WorkflowMetrics added in v1.16.0

type WorkflowMetrics struct {

	// Workflow execution metrics for APPFLOW_INTEGRATION workflow.
	AppflowIntegration *AppflowIntegrationWorkflowMetrics
	// contains filtered or unexported fields
}

Generic object containing workflow execution metrics.

type WorkflowStepItem added in v1.16.0

type WorkflowStepItem struct {

	// Workflow step information specific to APPFLOW_INTEGRATION workflow.
	AppflowIntegration *AppflowIntegrationWorkflowStep
	// contains filtered or unexported fields
}

List containing steps in workflow.

type WorkflowType added in v1.16.0

type WorkflowType string
const (
	WorkflowTypeAppflowIntegration WorkflowType = "APPFLOW_INTEGRATION"
)

Enum values for WorkflowType

func (WorkflowType) Values added in v1.16.0

func (WorkflowType) Values() []WorkflowType

Values returns all known values for WorkflowType. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ZendeskConnectorOperator added in v1.3.0

type ZendeskConnectorOperator string
const (
	ZendeskConnectorOperatorProjection          ZendeskConnectorOperator = "PROJECTION"
	ZendeskConnectorOperatorGreaterThan         ZendeskConnectorOperator = "GREATER_THAN"
	ZendeskConnectorOperatorAddition            ZendeskConnectorOperator = "ADDITION"
	ZendeskConnectorOperatorMultiplication      ZendeskConnectorOperator = "MULTIPLICATION"
	ZendeskConnectorOperatorDivision            ZendeskConnectorOperator = "DIVISION"
	ZendeskConnectorOperatorSubtraction         ZendeskConnectorOperator = "SUBTRACTION"
	ZendeskConnectorOperatorMaskAll             ZendeskConnectorOperator = "MASK_ALL"
	ZendeskConnectorOperatorMaskFirstN          ZendeskConnectorOperator = "MASK_FIRST_N"
	ZendeskConnectorOperatorMaskLastN           ZendeskConnectorOperator = "MASK_LAST_N"
	ZendeskConnectorOperatorValidateNonNull     ZendeskConnectorOperator = "VALIDATE_NON_NULL"
	ZendeskConnectorOperatorValidateNonZero     ZendeskConnectorOperator = "VALIDATE_NON_ZERO"
	ZendeskConnectorOperatorValidateNonNegative ZendeskConnectorOperator = "VALIDATE_NON_NEGATIVE"
	ZendeskConnectorOperatorValidateNumeric     ZendeskConnectorOperator = "VALIDATE_NUMERIC"
	ZendeskConnectorOperatorNoOp                ZendeskConnectorOperator = "NO_OP"
)

Enum values for ZendeskConnectorOperator

func (ZendeskConnectorOperator) Values added in v1.3.0

Values returns all known values for ZendeskConnectorOperator. Note that this can be expanded in the future, and so it is only as up to date as the client.

The ordering of this slice is not guaranteed to be stable across updates.

type ZendeskSourceProperties added in v1.3.0

type ZendeskSourceProperties struct {

	// The object specified in the Zendesk flow source.
	//
	// This member is required.
	Object *string
	// contains filtered or unexported fields
}

The properties that are applied when using Zendesk as a flow source.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL