The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Paws::Batch::UpdateComputeEnvironment - Arguments for method UpdateComputeEnvironment on Paws::Batch

DESCRIPTION

This class represents the parameters used for calling the method UpdateComputeEnvironment on the AWS Batch service. Use the attributes of this class as arguments to method UpdateComputeEnvironment.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateComputeEnvironment.

SYNOPSIS

    my $batch = Paws->service('Batch');
    # To update a compute environment
    # This example disables the P2OnDemand compute environment so it can be
    # deleted.
    my $UpdateComputeEnvironmentResponse = $batch->UpdateComputeEnvironment(
      'ComputeEnvironment' => 'P2OnDemand',
      'State'              => 'DISABLED'
    );

    # Results:
    my $computeEnvironmentArn =
      $UpdateComputeEnvironmentResponse->computeEnvironmentArn;
    my $computeEnvironmentName =
      $UpdateComputeEnvironmentResponse->computeEnvironmentName;

    # Returns a L<Paws::Batch::UpdateComputeEnvironmentResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/batch/UpdateComputeEnvironment

ATTRIBUTES

REQUIRED ComputeEnvironment => Str

The name or full Amazon Resource Name (ARN) of the compute environment to update.

ComputeResources => Paws::Batch::ComputeResourceUpdate

Details of the compute resources managed by the compute environment. Required for a managed compute environment.

ServiceRole => Str

The full Amazon Resource Name (ARN) of the IAM role that allows AWS Batch to make calls to other AWS services on your behalf.

If your specified role has a path other than /, then you must either specify the full role ARN (this is recommended) or prefix the role name with the path.

Depending on how you created your AWS Batch service role, its ARN may contain the service-role path prefix. When you only specify the name of the service role, AWS Batch assumes that your ARN does not use the service-role path prefix. Because of this, we recommend that you specify the full ARN of your service role when you create compute environments.

State => Str

The state of the compute environment. Compute environments in the ENABLED state can accept jobs from a queue and scale in or out automatically based on the workload demand of its associated queues.

Valid values are: "ENABLED", "DISABLED"

SEE ALSO

This class forms part of Paws, documenting arguments for method UpdateComputeEnvironment in Paws::Batch

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues