Class: Aws::NetworkFlowMonitor::Types::ScopeSummary
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFlowMonitor::Types::ScopeSummary
- Defined in:
- gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb
Overview
A summary of information about a scope, including the ARN, target ID, and Amazon Web Services Region.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#scope_arn ⇒ String
The Amazon Resource Name (ARN) of the scope.
-
#scope_id ⇒ String
The identifier for the scope that includes the resources you want to get data results for.
-
#status ⇒ String
The status of a scope.
Instance Attribute Details
#scope_arn ⇒ String
The Amazon Resource Name (ARN) of the scope.
1103 1104 1105 1106 1107 1108 1109 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1103 class ScopeSummary < Struct.new( :scope_id, :status, :scope_arn) SENSITIVE = [] include Aws::Structure end |
#scope_id ⇒ String
The identifier for the scope that includes the resources you want to get data results for. A scope ID is an internally-generated identifier that includes all the resources for a specific root account.
1103 1104 1105 1106 1107 1108 1109 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1103 class ScopeSummary < Struct.new( :scope_id, :status, :scope_arn) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The status of a scope. The status can be one of the following,
depending on the state of scope creation: SUCCEEDED
,
IN_PROGRESS
, or FAILED
.
1103 1104 1105 1106 1107 1108 1109 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 1103 class ScopeSummary < Struct.new( :scope_id, :status, :scope_arn) SENSITIVE = [] include Aws::Structure end |