Class: Aws::NetworkFlowMonitor::Types::CreateScopeInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkFlowMonitor::Types::CreateScopeInput
- Defined in:
- gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
A unique, case-sensitive string of up to 64 ASCII characters that you specify to make an idempotent API request.
-
#tags ⇒ Hash<String,String>
The tags for a scope.
-
#targets ⇒ Array<Types::TargetResource>
The targets to define the scope to be monitored.
Instance Attribute Details
#client_token ⇒ String
A unique, case-sensitive string of up to 64 ASCII characters that you specify to make an idempotent API request. Don't reuse the same client token for other API requests.
A suitable default value is auto-generated. You should normally not need to pass this option.
172 173 174 175 176 177 178 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 172 class CreateScopeInput < Struct.new( :targets, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
The tags for a scope. You can add a maximum of 200 tags.
172 173 174 175 176 177 178 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 172 class CreateScopeInput < Struct.new( :targets, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |
#targets ⇒ Array<Types::TargetResource>
The targets to define the scope to be monitored. Currently, a target is an Amazon Web Services account.
172 173 174 175 176 177 178 |
# File 'gems/aws-sdk-networkflowmonitor/lib/aws-sdk-networkflowmonitor/types.rb', line 172 class CreateScopeInput < Struct.new( :targets, :client_token, :tags) SENSITIVE = [] include Aws::Structure end |