Class: Aws::Pinpoint::Types::SegmentReference
- Inherits:
-
Struct
- Object
- Struct
- Aws::Pinpoint::Types::SegmentReference
- Defined in:
- gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb
Overview
Note:
When making an API call, you may pass SegmentReference data as a hash:
{
id: "__string", # required
version: 1,
}
Specifies the segment identifier and version of a segment.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#id ⇒ String
The unique identifier for the segment.
-
#version ⇒ Integer
The version number of the segment.
Instance Attribute Details
#id ⇒ String
The unique identifier for the segment.
15863 15864 15865 15866 15867 15868 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 15863 class SegmentReference < Struct.new( :id, :version) SENSITIVE = [] include Aws::Structure end |
#version ⇒ Integer
The version number of the segment.
15863 15864 15865 15866 15867 15868 |
# File 'gems/aws-sdk-pinpoint/lib/aws-sdk-pinpoint/types.rb', line 15863 class SegmentReference < Struct.new( :id, :version) SENSITIVE = [] include Aws::Structure end |