interface SegmentDefinitionReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.CustomerProfiles.SegmentDefinitionReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awscustomerprofiles#SegmentDefinitionReference |
Java | software.amazon.awscdk.interfaces.customerprofiles.SegmentDefinitionReference |
Python | aws_cdk.interfaces.aws_customerprofiles.SegmentDefinitionReference |
TypeScript | aws-cdk-lib » interfaces » aws_customerprofiles » SegmentDefinitionReference |
A reference to a SegmentDefinition resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_customerprofiles as interfaces_aws_customerprofiles } from 'aws-cdk-lib/interfaces';
const segmentDefinitionReference: interfaces_aws_customerprofiles.SegmentDefinitionReference = {
domainName: 'domainName',
segmentDefinitionArn: 'segmentDefinitionArn',
segmentDefinitionName: 'segmentDefinitionName',
};
Properties
| Name | Type | Description |
|---|---|---|
| domain | string | The DomainName of the SegmentDefinition resource. |
| segment | string | The ARN of the SegmentDefinition resource. |
| segment | string | The SegmentDefinitionName of the SegmentDefinition resource. |
domainName
Type:
string
The DomainName of the SegmentDefinition resource.
segmentDefinitionArn
Type:
string
The ARN of the SegmentDefinition resource.
segmentDefinitionName
Type:
string
The SegmentDefinitionName of the SegmentDefinition resource.

.NET
Go
Java
Python
TypeScript