imagebuilder / Client / update_infrastructure_configuration

update_infrastructure_configuration#

imagebuilder.Client.update_infrastructure_configuration(**kwargs)#

Updates a new infrastructure configuration. An infrastructure configuration defines the environment in which your image will be built and tested.

See also: AWS API Documentation

Request Syntax

response = client.update_infrastructure_configuration(
    infrastructureConfigurationArn='string',
    description='string',
    instanceTypes=[
        'string',
    ],
    instanceProfileName='string',
    securityGroupIds=[
        'string',
    ],
    subnetId='string',
    logging={
        's3Logs': {
            's3BucketName': 'string',
            's3KeyPrefix': 'string'
        }
    },
    keyPair='string',
    terminateInstanceOnFailure=True|False,
    snsTopicArn='string',
    clientToken='string',
    resourceTags={
        'string': 'string'
    },
    instanceMetadataOptions={
        'httpTokens': 'string',
        'httpPutResponseHopLimit': 123
    }
)
Parameters:
  • infrastructureConfigurationArn (string) –

    [REQUIRED]

    The Amazon Resource Name (ARN) of the infrastructure configuration that you want to update.

  • description (string) – The description of the infrastructure configuration.

  • instanceTypes (list) –

    The instance types of the infrastructure configuration. You can specify one or more instance types to use for this build. The service will pick one of these instance types based on availability.

    • (string) –

  • instanceProfileName (string) –

    [REQUIRED]

    The instance profile to associate with the instance used to customize your Amazon EC2 AMI.

  • securityGroupIds (list) –

    The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.

    • (string) –

  • subnetId (string) – The subnet ID to place the instance used to customize your Amazon EC2 AMI in.

  • logging (dict) –

    The logging configuration of the infrastructure configuration.

    • s3Logs (dict) –

      The Amazon S3 logging configuration.

      • s3BucketName (string) –

        The S3 bucket in which to store the logs.

      • s3KeyPrefix (string) –

        The Amazon S3 path to the bucket where the logs are stored.

  • keyPair (string) – The key pair of the infrastructure configuration. You can use this to log on to and debug the instance used to create your image.

  • terminateInstanceOnFailure (boolean) – The terminate instance on failure setting of the infrastructure configuration. Set to false if you want Image Builder to retain the instance used to configure your AMI if the build or test phase of your workflow fails.

  • snsTopicArn (string) –

    The Amazon Resource Name (ARN) for the SNS topic to which we send image build event notifications.

    Note

    EC2 Image Builder is unable to send notifications to SNS topics that are encrypted using keys from other accounts. The key that is used to encrypt the SNS topic must reside in the account that the Image Builder service runs under.

  • clientToken (string) –

    [REQUIRED]

    Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.

    This field is autopopulated if not provided.

  • resourceTags (dict) –

    The tags attached to the resource created by Image Builder.

    • (string) –

      • (string) –

  • instanceMetadataOptions (dict) –

    The instance metadata options that you can set for the HTTP requests that pipeline builds use to launch EC2 build and test instances. For more information about instance metadata options, see one of the following links:

    • httpTokens (string) –

      Indicates whether a signed token header is required for instance metadata retrieval requests. The values affect the response as follows:

      • required – When you retrieve the IAM role credentials, version 2.0 credentials are returned in all cases.

      • optional – You can include a signed token header in your request to retrieve instance metadata, or you can leave it out. If you include it, version 2.0 credentials are returned for the IAM role. Otherwise, version 1.0 credentials are returned.

      The default setting is optional.

    • httpPutResponseHopLimit (integer) –

      Limit the number of hops that an instance metadata request can traverse to reach its destination. The default is one hop. However, if HTTP tokens are required, container image builds need a minimum of two hops.

Return type:

dict

Returns:

Response Syntax

{
    'requestId': 'string',
    'clientToken': 'string',
    'infrastructureConfigurationArn': 'string'
}

Response Structure

  • (dict) –

    • requestId (string) –

      The request ID that uniquely identifies this request.

    • clientToken (string) –

      The client token that uniquely identifies the request.

    • infrastructureConfigurationArn (string) –

      The Amazon Resource Name (ARN) of the infrastructure configuration that was updated by this request.

Exceptions