Class: Aws::CodeStarNotifications::Types::Target
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStarNotifications::Types::Target
- Defined in:
- gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb
Overview
Note:
When making an API call, you may pass Target data as a hash:
{
target_type: "TargetType",
target_address: "TargetAddress",
}
Information about the SNS topics associated with a notification rule.
Constant Summary collapse
- SENSITIVE =
[:target_address]
Instance Attribute Summary collapse
-
#target_address ⇒ String
The Amazon Resource Name (ARN) of the SNS topic.
-
#target_type ⇒ String
The target type.
Instance Attribute Details
#target_address ⇒ String
The Amazon Resource Name (ARN) of the SNS topic.
846 847 848 849 850 851 |
# File 'gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb', line 846 class Target < Struct.new( :target_type, :target_address) SENSITIVE = [:target_address] include Aws::Structure end |
#target_type ⇒ String
The target type. Can be an Amazon SNS topic.
846 847 848 849 850 851 |
# File 'gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb', line 846 class Target < Struct.new( :target_type, :target_address) SENSITIVE = [:target_address] include Aws::Structure end |