SegmentDefinitionReference

class aws_cdk.aws_customerprofiles.SegmentDefinitionReference(*, domain_name, segment_definition_arn, segment_definition_name)

Bases: object

A reference to a SegmentDefinition resource.

Parameters:
  • domain_name (str) – The DomainName of the SegmentDefinition resource.

  • segment_definition_arn (str) – The ARN of the SegmentDefinition resource.

  • segment_definition_name (str) – The SegmentDefinitionName of the SegmentDefinition resource.

ExampleMetadata:

fixture=_generated

Example:

# The code below shows an example of how to instantiate this type.
# The values are placeholders you should change.
from aws_cdk import aws_customerprofiles as customerprofiles

segment_definition_reference = customerprofiles.SegmentDefinitionReference(
    domain_name="domainName",
    segment_definition_arn="segmentDefinitionArn",
    segment_definition_name="segmentDefinitionName"
)

Attributes

domain_name

The DomainName of the SegmentDefinition resource.

segment_definition_arn

The ARN of the SegmentDefinition resource.

segment_definition_name

The SegmentDefinitionName of the SegmentDefinition resource.