Class: Aws::SecurityHub::Types::CreateActionTargetRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::CreateActionTargetRequest
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
When making an API call, you may pass CreateActionTargetRequest data as a hash:
{
name: "NonEmptyString", # required
description: "NonEmptyString", # required
id: "NonEmptyString", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#description ⇒ String
The description for the custom action target.
-
#id ⇒ String
The ID for the custom action target.
-
#name ⇒ String
The name of the custom action target.
Instance Attribute Details
#description ⇒ String
The description for the custom action target.
29591 29592 29593 29594 29595 29596 29597 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29591 class CreateActionTargetRequest < Struct.new( :name, :description, :id) SENSITIVE = [] include Aws::Structure end |
#id ⇒ String
The ID for the custom action target. Can contain up to 20 alphanumeric characters.
29591 29592 29593 29594 29595 29596 29597 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29591 class CreateActionTargetRequest < Struct.new( :name, :description, :id) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the custom action target. Can contain up to 20 characters.
29591 29592 29593 29594 29595 29596 29597 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29591 class CreateActionTargetRequest < Struct.new( :name, :description, :id) SENSITIVE = [] include Aws::Structure end |