Class: Aws::CodeStarNotifications::Types::Target

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb

Overview

Information about the Chatbot topics or Chatbot clients associated with a notification rule.

Constant Summary collapse

SENSITIVE =
[:target_address]

Instance Attribute Summary collapse

Instance Attribute Details

#target_addressString

The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client.

Returns:

  • (String)


717
718
719
720
721
722
# File 'gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb', line 717

class Target < Struct.new(
  :target_type,
  :target_address)
  SENSITIVE = [:target_address]
  include Aws::Structure
end

#target_typeString

The target type. Can be an Chatbot topic or Chatbot client.

  • Chatbot topics are specified as SNS.

  • Chatbot clients are specified as AWSChatbotSlack.

Returns:

  • (String)


717
718
719
720
721
722
# File 'gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb', line 717

class Target < Struct.new(
  :target_type,
  :target_address)
  SENSITIVE = [:target_address]
  include Aws::Structure
end