Class: Aws::DeviceFarm::Types::CreateProjectRequest

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#default_job_timeout_minutesInteger

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.

Returns:

  • (Integer)


483
484
485
486
487
488
489
# File 'lib/aws-sdk-devicefarm/types.rb', line 483

class CreateProjectRequest < Struct.new(
  :name,
  :default_job_timeout_minutes,
  :vpc_config)
  SENSITIVE = []
  include Aws::Structure
end

#nameString

The project’s name.

Returns:

  • (String)


483
484
485
486
487
488
489
# File 'lib/aws-sdk-devicefarm/types.rb', line 483

class CreateProjectRequest < Struct.new(
  :name,
  :default_job_timeout_minutes,
  :vpc_config)
  SENSITIVE = []
  include Aws::Structure
end

#vpc_configTypes::VpcConfig

The VPC security groups and subnets that are attached to a project.

Returns:



483
484
485
486
487
488
489
# File 'lib/aws-sdk-devicefarm/types.rb', line 483

class CreateProjectRequest < Struct.new(
  :name,
  :default_job_timeout_minutes,
  :vpc_config)
  SENSITIVE = []
  include Aws::Structure
end