Class: Aws::IoT::Types::DescribeCustomMetricResponse
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::IoT::Types::DescribeCustomMetricResponse
 
- Defined in:
- gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #creation_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The creation date of the custom metric in milliseconds since epoch. 
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Field represents a friendly name in the console for the custom metric; doesn't have to be unique. 
- 
  
    
      #last_modified_date  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The time the custom metric was last modified in milliseconds since epoch. 
- 
  
    
      #metric_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Amazon Resource Number (ARN) of the custom metric. 
- 
  
    
      #metric_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the custom metric. 
- 
  
    
      #metric_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The type of the custom metric. 
Instance Attribute Details
#creation_date ⇒ Time
The creation date of the custom metric in milliseconds since epoch.
| 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 5876 class DescribeCustomMetricResponse < Struct.new( :metric_name, :metric_arn, :metric_type, :display_name, :creation_date, :last_modified_date) SENSITIVE = [] include Aws::Structure end | 
#display_name ⇒ String
Field represents a friendly name in the console for the custom metric; doesn't have to be unique. Don't use this name as the metric identifier in the device metric report. Can be updated.
| 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 5876 class DescribeCustomMetricResponse < Struct.new( :metric_name, :metric_arn, :metric_type, :display_name, :creation_date, :last_modified_date) SENSITIVE = [] include Aws::Structure end | 
#last_modified_date ⇒ Time
The time the custom metric was last modified in milliseconds since epoch.
| 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 5876 class DescribeCustomMetricResponse < Struct.new( :metric_name, :metric_arn, :metric_type, :display_name, :creation_date, :last_modified_date) SENSITIVE = [] include Aws::Structure end | 
#metric_arn ⇒ String
The Amazon Resource Number (ARN) of the custom metric.
| 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 5876 class DescribeCustomMetricResponse < Struct.new( :metric_name, :metric_arn, :metric_type, :display_name, :creation_date, :last_modified_date) SENSITIVE = [] include Aws::Structure end | 
#metric_name ⇒ String
The name of the custom metric.
| 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 5876 class DescribeCustomMetricResponse < Struct.new( :metric_name, :metric_arn, :metric_type, :display_name, :creation_date, :last_modified_date) SENSITIVE = [] include Aws::Structure end | 
#metric_type ⇒ String
The type of the custom metric.
The type number only takes a single metric value as an input, but
while submitting the metrics value in the DeviceMetrics report, it
must be passed as an array with a single value.
| 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 | # File 'gems/aws-sdk-iot/lib/aws-sdk-iot/types.rb', line 5876 class DescribeCustomMetricResponse < Struct.new( :metric_name, :metric_arn, :metric_type, :display_name, :creation_date, :last_modified_date) SENSITIVE = [] include Aws::Structure end |