Class: Aws::CloudWatchOmni::Types::CreateViewRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::CloudWatchOmni::Types::CreateViewRequest
- Defined in:
- gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb
Overview
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#client_token ⇒ String
Idempotency token for safe retries.
-
#definition ⇒ String
The SQL query that defines the view.
-
#description ⇒ String
A description of the view.
-
#name ⇒ String
The name of the view.
-
#tags ⇒ Hash<String,String>
Resource tags.
Instance Attribute Details
#client_token ⇒ String
Idempotency token for safe retries. Retrying with the same token returns the original view instead of creating a duplicate.
A suitable default value is auto-generated. You should normally not need to pass this option.
1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1347 class CreateViewRequest < Struct.new( :name, :definition, :description, :tags, :client_token) SENSITIVE = [] include Aws::Structure end |
#definition ⇒ String
The SQL query that defines the view.
1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1347 class CreateViewRequest < Struct.new( :name, :definition, :description, :tags, :client_token) SENSITIVE = [] include Aws::Structure end |
#description ⇒ String
A description of the view.
1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1347 class CreateViewRequest < Struct.new( :name, :definition, :description, :tags, :client_token) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the view. Must begin with the "view." prefix. View names must be unique within the account and region.
1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1347 class CreateViewRequest < Struct.new( :name, :definition, :description, :tags, :client_token) SENSITIVE = [] include Aws::Structure end |
#tags ⇒ Hash<String,String>
Resource tags.
1347 1348 1349 1350 1351 1352 1353 1354 1355 |
# File 'gems/aws-sdk-cloudwatchomni/lib/aws-sdk-cloudwatchomni/types.rb', line 1347 class CreateViewRequest < Struct.new( :name, :definition, :description, :tags, :client_token) SENSITIVE = [] include Aws::Structure end |