interface SegmentReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.Pinpoint.SegmentReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awspinpoint#SegmentReference |
Java | software.amazon.awscdk.interfaces.pinpoint.SegmentReference |
Python | aws_cdk.interfaces.aws_pinpoint.SegmentReference |
TypeScript | aws-cdk-lib » interfaces » aws_pinpoint » SegmentReference |
A reference to a Segment resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_pinpoint as interfaces_aws_pinpoint } from 'aws-cdk-lib/interfaces';
const segmentReference: interfaces_aws_pinpoint.SegmentReference = {
segmentArn: 'segmentArn',
segmentId: 'segmentId',
};
Properties
| Name | Type | Description |
|---|---|---|
| segment | string | The ARN of the Segment resource. |
| segment | string | The SegmentId of the Segment resource. |
segmentArn
Type:
string
The ARN of the Segment resource.
segmentId
Type:
string
The SegmentId of the Segment resource.

.NET
Go
Java
Python
TypeScript