Skip to content

Get Segment Snapshot

customerprofiles_get_segment_snapshot R Documentation

Retrieve the latest status of a segment snapshot

Description

Retrieve the latest status of a segment snapshot.

Usage

customerprofiles_get_segment_snapshot(DomainName, SegmentDefinitionName,
  SnapshotId)

Arguments

DomainName

[required] The unique identifier of the domain.

SegmentDefinitionName

[required] The unique name of the segment definition.

SnapshotId

[required] The unique identifier of the segment snapshot.

Value

A list with the following syntax:

list(
  SnapshotId = "string",
  Status = "COMPLETED"|"IN_PROGRESS"|"FAILED",
  StatusMessage = "string",
  DataFormat = "CSV"|"JSONL"|"ORC",
  EncryptionKey = "string",
  RoleArn = "string",
  DestinationUri = "string"
)

Request syntax

svc$get_segment_snapshot(
  DomainName = "string",
  SegmentDefinitionName = "string",
  SnapshotId = "string"
)