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