imagebuilder / Client / get_infrastructure_configuration

get_infrastructure_configuration#

imagebuilder.Client.get_infrastructure_configuration(**kwargs)#

Gets an infrastructure configuration.

See also: AWS API Documentation

Request Syntax

response = client.get_infrastructure_configuration(
    infrastructureConfigurationArn='string'
)
Parameters:

infrastructureConfigurationArn (string) –

[REQUIRED]

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

Return type:

dict

Returns:

Response Syntax

{
    'requestId': 'string',
    'infrastructureConfiguration': {
        'arn': 'string',
        'name': 'string',
        'description': 'string',
        'instanceTypes': [
            'string',
        ],
        'instanceProfileName': 'string',
        'securityGroupIds': [
            'string',
        ],
        'subnetId': 'string',
        'logging': {
            's3Logs': {
                's3BucketName': 'string',
                's3KeyPrefix': 'string'
            }
        },
        'keyPair': 'string',
        'terminateInstanceOnFailure': True|False,
        'snsTopicArn': 'string',
        'dateCreated': 'string',
        'dateUpdated': 'string',
        'resourceTags': {
            'string': 'string'
        },
        'instanceMetadataOptions': {
            'httpTokens': 'string',
            'httpPutResponseHopLimit': 123
        },
        'tags': {
            'string': 'string'
        }
    }
}

Response Structure

  • (dict) –

    GetInfrastructureConfiguration response object.

    • requestId (string) –

      The request ID that uniquely identifies this request.

    • infrastructureConfiguration (dict) –

      The infrastructure configuration object.

      • arn (string) –

        The Amazon Resource Name (ARN) of the infrastructure configuration.

      • name (string) –

        The name of the infrastructure configuration.

      • description (string) –

        The description of the infrastructure configuration.

      • instanceTypes (list) –

        The instance types of the infrastructure configuration.

        • (string) –

      • instanceProfileName (string) –

        The instance profile of the infrastructure configuration.

      • securityGroupIds (list) –

        The security group IDs of the infrastructure configuration.

        • (string) –

      • subnetId (string) –

        The subnet ID of the infrastructure configuration.

      • 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 Amazon EC2 key pair of the infrastructure configuration.

      • terminateInstanceOnFailure (boolean) –

        The terminate instance on failure configuration of the infrastructure configuration.

      • 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.

      • dateCreated (string) –

        The date on which the infrastructure configuration was created.

      • dateUpdated (string) –

        The date on which the infrastructure configuration was last updated.

      • resourceTags (dict) –

        The tags attached to the resource created by Image Builder.

        • (string) –

          • (string) –

      • instanceMetadataOptions (dict) –

        The instance metadata option settings for the infrastructure configuration.

        • 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.

      • tags (dict) –

        The tags of the infrastructure configuration.

        • (string) –

          • (string) –

Exceptions