Class: Aws::CodeStarNotifications::Types::ListEventTypesFilter
- Inherits:
-
Struct
- Object
- Struct
- Aws::CodeStarNotifications::Types::ListEventTypesFilter
- Defined in:
- gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb
Overview
Note:
When making an API call, you may pass ListEventTypesFilter data as a hash:
{
name: "RESOURCE_TYPE", # required, accepts RESOURCE_TYPE, SERVICE_NAME
value: "ListEventTypesFilterValue", # required
}
Information about a filter to apply to the list of returned event types. You can filter by resource type or service name.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#name ⇒ String
The system-generated name of the filter type you want to filter by.
-
#value ⇒ String
The name of the resource type (for example, pipeline) or service name (for example, CodePipeline) that you want to filter by.
Instance Attribute Details
#name ⇒ String
The system-generated name of the filter type you want to filter by.
395 396 397 398 399 400 |
# File 'gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb', line 395 class ListEventTypesFilter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |
#value ⇒ String
The name of the resource type (for example, pipeline) or service name (for example, CodePipeline) that you want to filter by.
395 396 397 398 399 400 |
# File 'gems/aws-sdk-codestarnotifications/lib/aws-sdk-codestarnotifications/types.rb', line 395 class ListEventTypesFilter < Struct.new( :name, :value) SENSITIVE = [] include Aws::Structure end |