Class: Aws::DeviceFarm::Types::CreateProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::CreateProjectRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-devicefarm/types.rb
Overview
Represents a request to the create project operation.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#default_job_timeout_minutes ⇒ Integer
Sets the execution timeout value (in minutes) for a project.
-
#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
#default_job_timeout_minutes ⇒ Integer
Sets the execution timeout value (in minutes) for a project. All test runs in this project use the specified execution timeout value unless overridden when scheduling a run.
469 470 471 472 473 474 475 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 469 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The project’s name.
469 470 471 472 473 474 475 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 469 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
The VPC security groups and subnets that are attached to a project.
469 470 471 472 473 474 475 |
# File 'lib/aws-sdk-devicefarm/types.rb', line 469 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config) SENSITIVE = [] include Aws::Structure end |