Class: Aws::PrometheusService::Types::WorkspaceSummary
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PrometheusService::Types::WorkspaceSummary
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-prometheusservice/types.rb
 
Overview
The information about one Amazon Managed Service for Prometheus workspace in your account.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #alias  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The alias that is assigned to this workspace to help identify it.
 - 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN of the workspace.
 - 
  
    
      #created_at  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The date and time that the workspace was created.
 - 
  
    
      #kms_key_arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
(optional) If the workspace was created with a customer managed KMS key, the ARN for the key used.
 - 
  
    
      #status  ⇒ Types::WorkspaceStatus 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The current status of the workspace.
 - 
  
    
      #tags  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The list of tag keys and values that are associated with the workspace.
 - 
  
    
      #workspace_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The unique ID for the workspace.
 
Instance Attribute Details
#alias ⇒ String
The alias that is assigned to this workspace to help identify it. It does not need to be unique.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#arn ⇒ String
The ARN of the workspace.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#created_at ⇒ Time
The date and time that the workspace was created.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#kms_key_arn ⇒ String
(optional) If the workspace was created with a customer managed KMS key, the ARN for the key used.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ Types::WorkspaceStatus
The current status of the workspace.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#tags ⇒ Hash<String,String>
The list of tag keys and values that are associated with the workspace.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#workspace_id ⇒ String
The unique ID for the workspace.
      2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 2044 class WorkspaceSummary < Struct.new( :alias, :arn, :created_at, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  |