Class: Aws::SecurityHub::Types::UpdateActionTargetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::UpdateActionTargetRequest
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass UpdateActionTargetRequest data as a hash:
{
action_target_arn: "NonEmptyString", # required
name: "NonEmptyString",
description: "NonEmptyString",
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#action_target_arn ⇒ String
The ARN of the custom action target to update.
-
#description ⇒ String
The updated description for the custom action target.
-
#name ⇒ String
The updated name of the custom action target.
Instance Attribute Details
#action_target_arn ⇒ String
The ARN of the custom action target to update.
25232 25233 25234 25235 25236 25237 25238 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25232 class UpdateActionTargetRequest < Struct.new( :action_target_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The updated description for the custom action target.
25232 25233 25234 25235 25236 25237 25238 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25232 class UpdateActionTargetRequest < Struct.new( :action_target_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The updated name of the custom action target.
25232 25233 25234 25235 25236 25237 25238 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 25232 class UpdateActionTargetRequest < Struct.new( :action_target_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |