Class: Aws::DeviceFarm::Types::Project
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::DeviceFarm::Types::Project
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-devicefarm/types.rb
 
Overview
Represents an operating-system neutral workspace for running and managing tests.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #arn  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The project’s ARN.
 - 
  
    
      #created  ⇒ Time 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
When the project was created.
 - 
  
    
      #default_job_timeout_minutes  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The default number of minutes (at the project level) a test run executes before it times out.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The project’s name.
 - 
  
    
      #vpc_config  ⇒ Types::VpcConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The VPC security groups and subnets that are attached to a project.
 
Instance Attribute Details
#arn ⇒ String
The project’s ARN.
      4126 4127 4128 4129 4130 4131 4132 4133 4134  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 4126 class Project < Struct.new( :arn, :name, :default_job_timeout_minutes, :created, :vpc_config) SENSITIVE = [] include Aws::Structure end  | 
  
#created ⇒ Time
When the project was created.
      4126 4127 4128 4129 4130 4131 4132 4133 4134  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 4126 class Project < Struct.new( :arn, :name, :default_job_timeout_minutes, :created, :vpc_config) SENSITIVE = [] include Aws::Structure end  | 
  
#default_job_timeout_minutes ⇒ Integer
The default number of minutes (at the project level) a test run executes before it times out. The default value is 150 minutes.
      4126 4127 4128 4129 4130 4131 4132 4133 4134  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 4126 class Project < Struct.new( :arn, :name, :default_job_timeout_minutes, :created, :vpc_config) SENSITIVE = [] include Aws::Structure end  | 
  
#name ⇒ String
The project’s name.
      4126 4127 4128 4129 4130 4131 4132 4133 4134  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 4126 class Project < Struct.new( :arn, :name, :default_job_timeout_minutes, :created, :vpc_config) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_config ⇒ Types::VpcConfig
The VPC security groups and subnets that are attached to a project.
      4126 4127 4128 4129 4130 4131 4132 4133 4134  | 
    
      # File 'lib/aws-sdk-devicefarm/types.rb', line 4126 class Project < Struct.new( :arn, :name, :default_job_timeout_minutes, :created, :vpc_config) SENSITIVE = [] include Aws::Structure end  |