Class: Aws::GreengrassV2::Types::DeleteComponentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::GreengrassV2::Types::DeleteComponentRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-greengrassv2/types.rb
Overview
Note:
When making an API call, you may pass DeleteComponentRequest data as a hash:
{
arn: "ComponentVersionARN", # required
}
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The [ARN] of the component version.
Instance Attribute Details
#arn ⇒ String
The [ARN] of the component version.
[1]: docs.aws.amazon.com/general/latest/gr/aws-arns-and-namespaces.html
1151 1152 1153 1154 1155 |
# File 'lib/aws-sdk-greengrassv2/types.rb', line 1151 class DeleteComponentRequest < Struct.new( :arn) SENSITIVE = [] include Aws::Structure end |