Interface UpdateInfrastructureConfigurationRequest.Builder

All Superinterfaces:
AwsRequest.Builder, Buildable, CopyableBuilder<UpdateInfrastructureConfigurationRequest.Builder,UpdateInfrastructureConfigurationRequest>, ImagebuilderRequest.Builder, SdkBuilder<UpdateInfrastructureConfigurationRequest.Builder,UpdateInfrastructureConfigurationRequest>, SdkPojo, SdkRequest.Builder
Enclosing class:
UpdateInfrastructureConfigurationRequest

  • Method Details

    • infrastructureConfigurationArn

      UpdateInfrastructureConfigurationRequest.Builder infrastructureConfigurationArn(String infrastructureConfigurationArn)

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

      Parameters:
      infrastructureConfigurationArn - The Amazon Resource Name (ARN) of the infrastructure configuration that you want to update.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • description

      The description of the infrastructure configuration.

      Parameters:
      description - The description of the infrastructure configuration.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • instanceTypes

      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.

      Parameters:
      instanceTypes - 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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • instanceTypes

      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.

      Parameters:
      instanceTypes - 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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • instanceProfileName

      UpdateInfrastructureConfigurationRequest.Builder instanceProfileName(String instanceProfileName)

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

      Parameters:
      instanceProfileName - The instance profile to associate with the instance used to customize your Amazon EC2 AMI.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • securityGroupIds

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

      Parameters:
      securityGroupIds - The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • securityGroupIds

      UpdateInfrastructureConfigurationRequest.Builder securityGroupIds(String... securityGroupIds)

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

      Parameters:
      securityGroupIds - The security group IDs to associate with the instance used to customize your Amazon EC2 AMI.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • subnetId

      The subnet ID to place the instance used to customize your Amazon EC2 AMI in.

      Parameters:
      subnetId - The subnet ID to place the instance used to customize your Amazon EC2 AMI in.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • logging

      The logging configuration of the infrastructure configuration.

      Parameters:
      logging - The logging configuration of the infrastructure configuration.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • logging

      The logging configuration of the infrastructure configuration.

      This is a convenience method that creates an instance of the Logging.Builder avoiding the need to create one manually via Logging.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to logging(Logging).

      Parameters:
      logging - a consumer that will call methods on Logging.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • keyPair

      The key pair of the infrastructure configuration. You can use this to log on to and debug the instance used to create your image.

      Parameters:
      keyPair - The key pair of the infrastructure configuration. You can use this to log on to and debug the instance used to create your image.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • terminateInstanceOnFailure

      UpdateInfrastructureConfigurationRequest.Builder terminateInstanceOnFailure(Boolean terminateInstanceOnFailure)

      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.

      Parameters:
      terminateInstanceOnFailure - 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.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • snsTopicArn

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

      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.

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

      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.

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • clientToken

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

      Parameters:
      clientToken - Unique, case-sensitive identifier you provide to ensure idempotency of the request. For more information, see Ensuring idempotency in the Amazon EC2 API Reference.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • resourceTags

      The tags attached to the resource created by Image Builder.

      Parameters:
      resourceTags - The tags attached to the resource created by Image Builder.
      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • instanceMetadataOptions

      UpdateInfrastructureConfigurationRequest.Builder instanceMetadataOptions(InstanceMetadataOptions instanceMetadataOptions)

      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:

      Parameters:
      instanceMetadataOptions - 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:

      Returns:
      Returns a reference to this object so that method calls can be chained together.
    • instanceMetadataOptions

      default UpdateInfrastructureConfigurationRequest.Builder instanceMetadataOptions(Consumer<InstanceMetadataOptions.Builder> instanceMetadataOptions)

      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:

      This is a convenience method that creates an instance of the InstanceMetadataOptions.Builder avoiding the need to create one manually via InstanceMetadataOptions.builder().

      When the Consumer completes, SdkBuilder.build() is called immediately and its result is passed to instanceMetadataOptions(InstanceMetadataOptions).

      Parameters:
      instanceMetadataOptions - a consumer that will call methods on InstanceMetadataOptions.Builder
      Returns:
      Returns a reference to this object so that method calls can be chained together.
      See Also:
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      overrideConfiguration - The override configuration.
      Returns:
      This object for method chaining.
    • overrideConfiguration

      Description copied from interface: AwsRequest.Builder
      Add an optional request override configuration.
      Specified by:
      overrideConfiguration in interface AwsRequest.Builder
      Parameters:
      builderConsumer - A Consumer to which an empty AwsRequestOverrideConfiguration.Builder will be given.
      Returns:
      This object for method chaining.