AWS Fundamentals Logo
AWS Fundamentals
AWS::CustomerProfiles::CalculatedAttributeDefinition

CustomerProfiles CalculatedAttributeDefinition

A calculated attribute definition for Customer Profiles

Properties

9 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
AttributeDetails
AttributeDetails
Required
CalculatedAttributeName
string
RequiredCreate-only
DomainName
string
RequiredCreate-only
Statistic
string
Required
Conditions
Conditions
Description
string
DisplayName
string
Tags
array
UseHistoricalData
boolean
Create-only

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
CreatedAtstringThe timestamp of when the calculated attribute definition was created.
LastUpdatedAtstringThe timestamp of when the calculated attribute definition was most recently edited.
ReadinessReadiness-
StatusstringThe status of the calculated attribute definition.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::CustomerProfiles::CalculatedAttributeDefinition

Resources:
  MyResource:
    Type: AWS::CustomerProfiles::CalculatedAttributeDefinition
    Properties:
      DomainName: "my-domainname"
      CalculatedAttributeName: "my-calculatedattributename"
      AttributeDetails: "value"
      Statistic: "value"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

profile:CreateCalculatedAttributeDefinitionprofile:TagResource

read

profile:GetCalculatedAttributeDefinition

update

profile:GetCalculatedAttributeDefinitionprofile:UpdateCalculatedAttributeDefinitionprofile:UntagResourceprofile:TagResource

delete

profile:DeleteCalculatedAttributeDefinition

list

profile:ListCalculatedAttributeDefinitions

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceCustomerProfiles
Properties13
Required4
TaggingSupported
Primary IDDomainName

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

DomainNameCalculatedAttributeNameUseHistoricalDataConditions/Range/TimestampSourceConditions/Range/TimestampFormat

External Links