Class: Aws::CloudFormation::Types::StartResourceScanOutput
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudFormation::Types::StartResourceScanOutput
- Defined in:
- gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#resource_scan_id ⇒ String
The Amazon Resource Name (ARN) of the resource scan.
Instance Attribute Details
#resource_scan_id ⇒ String
The Amazon Resource Name (ARN) of the resource scan. The format is
arn:${Partition}:cloudformation:${Region}:${Account}:resourceScan/${Id}
.
An example is
arn:aws:cloudformation:us-east-1:123456789012:resourceScan/f5b490f7-7ed4-428a-aa06-31ff25db0772
.
9736 9737 9738 9739 9740 |
# File 'gems/aws-sdk-cloudformation/lib/aws-sdk-cloudformation/types.rb', line 9736 class StartResourceScanOutput < Struct.new( :resource_scan_id) SENSITIVE = [] include Aws::Structure end |