Class: Aws::CodeStarNotifications::Types::TargetSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStarNotifications::Types::TargetSummary
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-codestarnotifications/types.rb
Overview
Information about the targets specified for a notification rule.
Constant Summary collapse
- SENSITIVE =
[:target_address]
Instance Attribute Summary collapse
-
#target_address ⇒ String
The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client.
-
#target_status ⇒ String
The status of the target.
-
#target_type ⇒ String
The type of the target (for example, ‘SNS`).
Instance Attribute Details
#target_address ⇒ String
The Amazon Resource Name (ARN) of the Chatbot topic or Chatbot client.
745 746 747 748 749 750 751 |
# File 'lib/aws-sdk-codestarnotifications/types.rb', line 745 class TargetSummary < Struct.new( :target_address, :target_type, :target_status) SENSITIVE = [:target_address] include Aws::Structure end |
#target_status ⇒ String
The status of the target.
745 746 747 748 749 750 751 |
# File 'lib/aws-sdk-codestarnotifications/types.rb', line 745 class TargetSummary < Struct.new( :target_address, :target_type, :target_status) SENSITIVE = [:target_address] include Aws::Structure end |
#target_type ⇒ String
The type of the target (for example, ‘SNS`).
-
Chatbot topics are specified as ‘SNS`.
-
Chatbot clients are specified as ‘AWSChatbotSlack`.
745 746 747 748 749 750 751 |
# File 'lib/aws-sdk-codestarnotifications/types.rb', line 745 class TargetSummary < Struct.new( :target_address, :target_type, :target_status) SENSITIVE = [:target_address] include Aws::Structure end |