Class: Aws::PrometheusService::Types::CreateWorkspaceResponse
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::PrometheusService::Types::CreateWorkspaceResponse
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-prometheusservice/types.rb
 
Overview
Represents the output of a ‘CreateWorkspace` operation.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The ARN for the new workspace.
 - 
  
    
      #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 new 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 new workspace.
 
Instance Attribute Details
#arn ⇒ String
The ARN for the new workspace.
      448 449 450 451 452 453 454 455 456  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 448 class CreateWorkspaceResponse < Struct.new( :arn, :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.
      448 449 450 451 452 453 454 455 456  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 448 class CreateWorkspaceResponse < Struct.new( :arn, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ Types::WorkspaceStatus
The current status of the new workspace. Immediately after you create the workspace, the status is usually ‘CREATING`.
      448 449 450 451 452 453 454 455 456  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 448 class CreateWorkspaceResponse < Struct.new( :arn, :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.
      448 449 450 451 452 453 454 455 456  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 448 class CreateWorkspaceResponse < Struct.new( :arn, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  | 
  
#workspace_id ⇒ String
The unique ID for the new workspace.
      448 449 450 451 452 453 454 455 456  | 
    
      # File 'lib/aws-sdk-prometheusservice/types.rb', line 448 class CreateWorkspaceResponse < Struct.new( :arn, :kms_key_arn, :status, :tags, :workspace_id) SENSITIVE = [] include Aws::Structure end  |