Class: Aws::DeviceFarm::Types::CreateProjectRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::DeviceFarm::Types::CreateProjectRequest
- Defined in:
- gems/aws-sdk-devicefarm/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.
-
#environment_variables ⇒ Array<Types::EnvironmentVariable>
A set of environment variables which are used by default for all runs in the project.
-
#execution_role_arn ⇒ String
An IAM role to be assumed by the test host for all runs in the 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.
487 488 489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 487 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config, :environment_variables, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |
#environment_variables ⇒ Array<Types::EnvironmentVariable>
A set of environment variables which are used by default for all runs in the project. These environment variables are applied to the test run during the execution of a test spec file.
For more information about using test spec files, please see Custom test environments in AWS Device Farm.
487 488 489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 487 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config, :environment_variables, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |
#execution_role_arn ⇒ String
An IAM role to be assumed by the test host for all runs in the project.
487 488 489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 487 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config, :environment_variables, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The project's name.
487 488 489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 487 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config, :environment_variables, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |
#vpc_config ⇒ Types::VpcConfig
The VPC security groups and subnets that are attached to a project.
487 488 489 490 491 492 493 494 495 |
# File 'gems/aws-sdk-devicefarm/lib/aws-sdk-devicefarm/types.rb', line 487 class CreateProjectRequest < Struct.new( :name, :default_job_timeout_minutes, :vpc_config, :environment_variables, :execution_role_arn) SENSITIVE = [] include Aws::Structure end |