Skip to content

Delete Configuration Set

pinpointsmsvoicev2_delete_configuration_set R Documentation

Deletes an existing configuration set

Description

Deletes an existing configuration set.

A configuration set is a set of rules that you apply to voice and SMS messages that you send. In a configuration set, you can specify a destination for specific types of events related to voice and SMS messages.

Usage

pinpointsmsvoicev2_delete_configuration_set(ConfigurationSetName)

Arguments

ConfigurationSetName

[required] The name of the configuration set or the configuration set ARN that you want to delete. The ConfigurationSetName and ConfigurationSetArn can be found using the describe_configuration_sets action.

Value

A list with the following syntax:

list(
  ConfigurationSetArn = "string",
  ConfigurationSetName = "string",
  EventDestinations = list(
    list(
      EventDestinationName = "string",
      Enabled = TRUE|FALSE,
      MatchingEventTypes = list(
        "ALL"|"TEXT_ALL"|"TEXT_SENT"|"TEXT_PENDING"|"TEXT_QUEUED"|"TEXT_SUCCESSFUL"|"TEXT_DELIVERED"|"TEXT_INVALID"|"TEXT_INVALID_MESSAGE"|"TEXT_UNREACHABLE"|"TEXT_CARRIER_UNREACHABLE"|"TEXT_BLOCKED"|"TEXT_CARRIER_BLOCKED"|"TEXT_SPAM"|"TEXT_UNKNOWN"|"TEXT_TTL_EXPIRED"|"VOICE_ALL"|"VOICE_INITIATED"|"VOICE_RINGING"|"VOICE_ANSWERED"|"VOICE_COMPLETED"|"VOICE_BUSY"|"VOICE_NO_ANSWER"|"VOICE_FAILED"|"VOICE_TTL_EXPIRED"|"MEDIA_ALL"|"MEDIA_PENDING"|"MEDIA_QUEUED"|"MEDIA_SUCCESSFUL"|"MEDIA_DELIVERED"|"MEDIA_INVALID"|"MEDIA_INVALID_MESSAGE"|"MEDIA_UNREACHABLE"|"MEDIA_CARRIER_UNREACHABLE"|"MEDIA_BLOCKED"|"MEDIA_CARRIER_BLOCKED"|"MEDIA_SPAM"|"MEDIA_UNKNOWN"|"MEDIA_TTL_EXPIRED"|"MEDIA_FILE_INACCESSIBLE"|"MEDIA_FILE_TYPE_UNSUPPORTED"|"MEDIA_FILE_SIZE_EXCEEDED"
      ),
      CloudWatchLogsDestination = list(
        IamRoleArn = "string",
        LogGroupArn = "string"
      ),
      KinesisFirehoseDestination = list(
        IamRoleArn = "string",
        DeliveryStreamArn = "string"
      ),
      SnsDestination = list(
        TopicArn = "string"
      )
    )
  ),
  DefaultMessageType = "TRANSACTIONAL"|"PROMOTIONAL",
  DefaultSenderId = "string",
  CreatedTimestamp = as.POSIXct(
    "2015-01-01"
  )
)

Request syntax

svc$delete_configuration_set(
  ConfigurationSetName = "string"
)