AWS Batch

2017/04/11 - AWS Batch - 2 updated api methods

Changes  API Update for AWS Batch: Customer provided AMI for MANAGED Compute Environment

CreateComputeEnvironment (updated) Link ¶
Changes (request)
{'computeResources': {'imageId': 'string'}}

Creates an AWS Batch compute environment. You can create MANAGED or UNMANAGED compute environments.

In a managed compute environment, AWS Batch manages the compute resources within the environment, based on the compute resources that you specify. Instances launched into a managed compute environment use the latest Amazon ECS-optimized AMI. You can choose to use Amazon EC2 On-Demand instances in your managed compute environment, or you can use Amazon EC2 Spot instances that only launch when the Spot bid price is below a specified percentage of the On-Demand price.

In an unmanaged compute environment, you can manage your own compute resources. This provides more compute resource configuration options, such as using a custom AMI, but you must ensure that your AMI meets the Amazon ECS container instance AMI specification. For more information, see Container Instance AMIs in the Amazon EC2 Container Service Developer Guide . After you have created your unmanaged compute environment, you can use the DescribeComputeEnvironments operation to find the Amazon ECS cluster that is associated with it and then manually launch your container instances into that Amazon ECS cluster. For more information, see Launching an Amazon ECS Container Instance in the Amazon EC2 Container Service Developer Guide .

See also: AWS API Documentation

Request Syntax

client.create_compute_environment(
    computeEnvironmentName='string',
    type='MANAGED'|'UNMANAGED',
    state='ENABLED'|'DISABLED',
    computeResources={
        'type': 'EC2'|'SPOT',
        'minvCpus': 123,
        'maxvCpus': 123,
        'desiredvCpus': 123,
        'instanceTypes': [
            'string',
        ],
        'imageId': 'string',
        'subnets': [
            'string',
        ],
        'securityGroupIds': [
            'string',
        ],
        'ec2KeyPair': 'string',
        'instanceRole': 'string',
        'tags': {
            'string': 'string'
        },
        'bidPercentage': 123,
        'spotIamFleetRole': 'string'
    },
    serviceRole='string'
)
type computeEnvironmentName

string

param computeEnvironmentName

[REQUIRED]

The name for your compute environment. Up to 128 letters (uppercase and lowercase), numbers, and underscores are allowed.

type type

string

param type

[REQUIRED]

The type of the compute environment.

type state

string

param state

The state of the compute environment. If the state is ENABLED , then the compute environment accepts jobs from a queue and can scale out automatically based on queues.

type computeResources

dict

param computeResources

Details of the compute resources managed by the compute environment. This parameter is required for managed compute environments.

  • type (string) -- [REQUIRED]

    The type of compute environment.

  • minvCpus (integer) -- [REQUIRED]

    The minimum number of EC2 vCPUs that an environment should maintain.

  • maxvCpus (integer) -- [REQUIRED]

    The maximum number of EC2 vCPUs that an environment can reach.

  • desiredvCpus (integer) --

    The desired number of EC2 vCPUS in the compute environment.

  • instanceTypes (list) -- [REQUIRED]

    The instances types that may launched.

    • (string) --

  • imageId (string) --

    The Amazon Machine Image (AMI) ID used for instances launched in the compute environment.

  • subnets (list) -- [REQUIRED]

    The VPC subnets into which the compute resources are launched.

    • (string) --

  • securityGroupIds (list) -- [REQUIRED]

    The EC2 security group that is associated with instances launched in the compute environment.

    • (string) --

  • ec2KeyPair (string) --

    The EC2 key pair that is used for instances launched in the compute environment.

  • instanceRole (string) -- [REQUIRED]

    The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

  • tags (dict) --

    Key-value pair tags to be applied to resources that are launched in the compute environment.

    • (string) --

      • (string) --

  • bidPercentage (integer) --

    The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

  • spotIamFleetRole (string) --

    The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

type serviceRole

string

param serviceRole

[REQUIRED]

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

rtype

dict

returns

Response Syntax

{
    'computeEnvironmentName': 'string',
    'computeEnvironmentArn': 'string'
}

Response Structure

  • (dict) --

    • computeEnvironmentName (string) --

      The name of the compute environment.

    • computeEnvironmentArn (string) --

      The Amazon Resource Name (ARN) of the compute environment.

DescribeComputeEnvironments (updated) Link ¶
Changes (response)
{'computeEnvironments': {'computeResources': {'imageId': 'string'}}}

Describes one or more of your compute environments.

If you are using an unmanaged compute environment, you can use the DescribeComputeEnvironment operation to determine the ecsClusterArn that you should launch your Amazon ECS container instances into.

See also: AWS API Documentation

Request Syntax

client.describe_compute_environments(
    computeEnvironments=[
        'string',
    ],
    maxResults=123,
    nextToken='string'
)
type computeEnvironments

list

param computeEnvironments

A list of up to 100 compute environment names or full Amazon Resource Name (ARN) entries.

  • (string) --

type maxResults

integer

param maxResults

The maximum number of cluster results returned by DescribeComputeEnvironments in paginated output. When this parameter is used, DescribeComputeEnvironments only returns maxResults results in a single page along with a nextToken response element. The remaining results of the initial request can be seen by sending another DescribeComputeEnvironments request with the returned nextToken value. This value can be between 1 and 100. If this parameter is not used, then DescribeComputeEnvironments returns up to 100 results and a nextToken value if applicable.

type nextToken

string

param nextToken

The nextToken value returned from a previous paginated DescribeComputeEnvironments request where maxResults was used and the results exceeded the value of that parameter. Pagination continues from the end of the previous results that returned the nextToken value. This value is null when there are no more results to return.

Note

This token should be treated as an opaque identifier that is only used to retrieve the next items in a list and not for other programmatic purposes.

rtype

dict

returns

Response Syntax

{
    'computeEnvironments': [
        {
            'computeEnvironmentName': 'string',
            'computeEnvironmentArn': 'string',
            'ecsClusterArn': 'string',
            'type': 'MANAGED'|'UNMANAGED',
            'state': 'ENABLED'|'DISABLED',
            'status': 'CREATING'|'UPDATING'|'DELETING'|'DELETED'|'VALID'|'INVALID',
            'statusReason': 'string',
            'computeResources': {
                'type': 'EC2'|'SPOT',
                'minvCpus': 123,
                'maxvCpus': 123,
                'desiredvCpus': 123,
                'instanceTypes': [
                    'string',
                ],
                'imageId': 'string',
                'subnets': [
                    'string',
                ],
                'securityGroupIds': [
                    'string',
                ],
                'ec2KeyPair': 'string',
                'instanceRole': 'string',
                'tags': {
                    'string': 'string'
                },
                'bidPercentage': 123,
                'spotIamFleetRole': 'string'
            },
            'serviceRole': 'string'
        },
    ],
    'nextToken': 'string'
}

Response Structure

  • (dict) --

    • computeEnvironments (list) --

      The list of compute environments.

      • (dict) --

        An object representing an AWS Batch compute environment.

        • computeEnvironmentName (string) --

          The name of the compute environment.

        • computeEnvironmentArn (string) --

          The Amazon Resource Name (ARN) of the compute environment.

        • ecsClusterArn (string) --

          The Amazon Resource Name (ARN) of the underlying Amazon ECS cluster used by the compute environment.

        • type (string) --

          The type of the compute environment.

        • state (string) --

          The state of the compute environment. The valid values are ENABLED or DISABLED . An ENABLED state indicates that you can register instances with the compute environment and that the associated instances can accept jobs.

        • status (string) --

          The current status of the compute environment (for example, CREATING or VALID ).

        • statusReason (string) --

          A short, human-readable string to provide additional details about the current status of the compute environment.

        • computeResources (dict) --

          The compute resources defined for the compute environment.

          • type (string) --

            The type of compute environment.

          • minvCpus (integer) --

            The minimum number of EC2 vCPUs that an environment should maintain.

          • maxvCpus (integer) --

            The maximum number of EC2 vCPUs that an environment can reach.

          • desiredvCpus (integer) --

            The desired number of EC2 vCPUS in the compute environment.

          • instanceTypes (list) --

            The instances types that may launched.

            • (string) --

          • imageId (string) --

            The Amazon Machine Image (AMI) ID used for instances launched in the compute environment.

          • subnets (list) --

            The VPC subnets into which the compute resources are launched.

            • (string) --

          • securityGroupIds (list) --

            The EC2 security group that is associated with instances launched in the compute environment.

            • (string) --

          • ec2KeyPair (string) --

            The EC2 key pair that is used for instances launched in the compute environment.

          • instanceRole (string) --

            The Amazon ECS instance role applied to Amazon EC2 instances in a compute environment.

          • tags (dict) --

            Key-value pair tags to be applied to resources that are launched in the compute environment.

            • (string) --

              • (string) --

          • bidPercentage (integer) --

            The minimum percentage that a Spot Instance price must be when compared with the On-Demand price for that instance type before instances are launched. For example, if your bid percentage is 20%, then the Spot price must be below 20% of the current On-Demand price for that EC2 instance.

          • spotIamFleetRole (string) --

            The Amazon Resource Name (ARN) of the Amazon EC2 Spot Fleet IAM role applied to a SPOT compute environment.

        • serviceRole (string) --

          The service role associated with the compute environment that allows AWS Batch to make calls to AWS API operations on your behalf.

    • nextToken (string) --

      The nextToken value to include in a future DescribeComputeEnvironments request. When the results of a DescribeJobDefinitions request exceed maxResults , this value can be used to retrieve the next page of results. This value is null when there are no more results to return.