Class: Aws::CustomerProfiles::Types::PutProfileObjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CustomerProfiles::Types::PutProfileObjectRequest
- Defined in:
- gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb
Overview
Note:
When making an API call, you may pass PutProfileObjectRequest data as a hash:
{
object_type_name: "typeName", # required
object: "stringifiedJson", # required
domain_name: "name", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#domain_name ⇒ String
The unique name of the domain.
-
#object ⇒ String
A string that is serialized from a JSON object.
-
#object_type_name ⇒ String
The name of the profile object type.
Instance Attribute Details
#domain_name ⇒ String
The unique name of the domain.
3984 3985 3986 3987 3988 3989 3990 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3984 class PutProfileObjectRequest < Struct.new( :object_type_name, :object, :domain_name) SENSITIVE = [] include Aws::Structure end |
#object ⇒ String
A string that is serialized from a JSON object.
3984 3985 3986 3987 3988 3989 3990 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3984 class PutProfileObjectRequest < Struct.new( :object_type_name, :object, :domain_name) SENSITIVE = [] include Aws::Structure end |
#object_type_name ⇒ String
The name of the profile object type.
3984 3985 3986 3987 3988 3989 3990 |
# File 'gems/aws-sdk-customerprofiles/lib/aws-sdk-customerprofiles/types.rb', line 3984 class PutProfileObjectRequest < Struct.new( :object_type_name, :object, :domain_name) SENSITIVE = [] include Aws::Structure end |