Class: Aws::Personalize::Types::CreateCampaignRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::Personalize::Types::CreateCampaignRequest
- Defined in:
- gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb
Overview
Note:
When making an API call, you may pass CreateCampaignRequest data as a hash:
{
name: "Name", # required
solution_version_arn: "Arn", # required
min_provisioned_tps: 1,
campaign_config: {
item_exploration_config: {
"ParameterName" => "ParameterValue",
},
},
tags: [
{
tag_key: "TagKey", # required
tag_value: "TagValue", # required
},
],
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#campaign_config ⇒ Types::CampaignConfig
The configuration details of a campaign.
-
#min_provisioned_tps ⇒ Integer
Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support.
-
#name ⇒ String
A name for the new campaign.
-
#solution_version_arn ⇒ String
The Amazon Resource Name (ARN) of the solution version to deploy.
-
#tags ⇒ Array<Types::Tag>
A list of [tags][1] to apply to the campaign.
Instance Attribute Details
#campaign_config ⇒ Types::CampaignConfig
The configuration details of a campaign.
1118 1119 1120 1121 1122 1123 1124 1125 1126 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1118 class CreateCampaignRequest < Struct.new( :name, :solution_version_arn, :min_provisioned_tps, :campaign_config, :tags) SENSITIVE = [] include Aws::Structure end |
#min_provisioned_tps ⇒ Integer
Specifies the requested minimum provisioned transactions (recommendations) per second that Amazon Personalize will support.
1118 1119 1120 1121 1122 1123 1124 1125 1126 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1118 class CreateCampaignRequest < Struct.new( :name, :solution_version_arn, :min_provisioned_tps, :campaign_config, :tags) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
A name for the new campaign. The campaign name must be unique within your account.
1118 1119 1120 1121 1122 1123 1124 1125 1126 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1118 class CreateCampaignRequest < Struct.new( :name, :solution_version_arn, :min_provisioned_tps, :campaign_config, :tags) SENSITIVE = [] include Aws::Structure end |
#solution_version_arn ⇒ String
The Amazon Resource Name (ARN) of the solution version to deploy.
1118 1119 1120 1121 1122 1123 1124 1125 1126 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1118 class CreateCampaignRequest < Struct.new( :name, :solution_version_arn, :min_provisioned_tps, :campaign_config, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Array<Types::Tag>
A list of tags to apply to the campaign.
1118 1119 1120 1121 1122 1123 1124 1125 1126 |
# File 'gems/aws-sdk-personalize/lib/aws-sdk-personalize/types.rb', line 1118 class CreateCampaignRequest < Struct.new( :name, :solution_version_arn, :min_provisioned_tps, :campaign_config, :tags) SENSITIVE = [] include Aws::Structure end |