Class: Aws::ControlCatalog::Types::GetControlRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::ControlCatalog::Types::GetControlRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-controlcatalog/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#control_arn ⇒ String
The Amazon Resource Name (ARN) of the control.
Instance Attribute Details
#control_arn ⇒ String
The Amazon Resource Name (ARN) of the control. It has one of the following formats:
*Global format*
‘arn:PARTITION:controlcatalog:::control/CONTROL_CATALOG_OPAQUE_ID`
*Or Regional format*
‘arn:PARTITION:controltower:REGION::control/CONTROL_TOWER_OPAQUE_ID`
Here is a more general pattern that covers Amazon Web Services Control Tower and Control Catalog ARNs:
‘^arn:(aws(?:*)?):(controlcatalog|controltower):*::control/+$`
267 268 269 270 271 |
# File 'lib/aws-sdk-controlcatalog/types.rb', line 267 class GetControlRequest < Struct.new( :control_arn) SENSITIVE = [] include Aws::Structure end |