Skip to content

Create Configuration Set

pinpointsmsvoicev2_create_configuration_set R Documentation

Creates a new configuration set

Description

Creates a new configuration set. After you create the configuration set, you can add one or more event destinations to it.

A configuration set is a set of rules that you apply to the SMS and voice messages that you send.

When you send a message, you can optionally specify a single configuration set.

Usage

pinpointsmsvoicev2_create_configuration_set(ConfigurationSetName, Tags,
  ClientToken)

Arguments

ConfigurationSetName

[required] The name to use for the new configuration set.

Tags

An array of key and value pair tags that's associated with the new configuration set.

ClientToken

Unique, case-sensitive identifier that you provide to ensure the idempotency of the request. If you don't specify a client token, a randomly generated token is used for the request to ensure idempotency.

Value

A list with the following syntax:

list(
  ConfigurationSetArn = "string",
  ConfigurationSetName = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$create_configuration_set(
  ConfigurationSetName = "string",
  Tags = list(
    list(
      Key = "string",
      Value = "string"
    )
  ),
  ClientToken = "string"
)