You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::Chime::Types::SendChannelMessageRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing SendChannelMessageRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  channel_arn: "ChimeArn", # required
  content: "NonEmptyContent", # required
  type: "STANDARD", # required, accepts STANDARD, CONTROL
  persistence: "PERSISTENT", # required, accepts PERSISTENT, NON_PERSISTENT
  metadata: "Metadata",
  client_request_token: "ClientRequestToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#channel_arnString

The ARN of the channel.

Returns:

  • (String)

    The ARN of the channel.

#client_request_tokenString

The Idempotency token for each client request.

Returns:

  • (String)

    The Idempotency token for each client request.

#contentString

The content of the message.

Returns:

  • (String)

    The content of the message.

#metadataString

The optional metadata for each message.

Returns:

  • (String)

    The optional metadata for each message.

#persistenceString

Boolean that controls whether the message is persisted on the back end. Required.

Possible values:

  • PERSISTENT
  • NON_PERSISTENT

Returns:

  • (String)

    Boolean that controls whether the message is persisted on the back end.

#typeString

The type of message, STANDARD or CONTROL.

Possible values:

  • STANDARD
  • CONTROL

Returns:

  • (String)

    The type of message, STANDARD or CONTROL.