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.
43026 43027 43028 43029 43030 43031 43032 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 43026 class UpdateActionTargetRequest < Struct.new( :action_target_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
The updated description for the custom action target.
43026 43027 43028 43029 43030 43031 43032 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 43026 class UpdateActionTargetRequest < Struct.new( :action_target_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The updated name of the custom action target.
43026 43027 43028 43029 43030 43031 43032 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 43026 class UpdateActionTargetRequest < Struct.new( :action_target_arn, :name, :description) SENSITIVE = [] include Aws::Structure end |