You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::GlueDataBrew::Types::UpdateProfileJobRequest

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing UpdateProfileJobRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  encryption_key_arn: "EncryptionKeyArn",
  encryption_mode: "SSE-KMS", # accepts SSE-KMS, SSE-S3
  name: "JobName", # required
  log_subscription: "ENABLE", # accepts ENABLE, DISABLE
  max_capacity: 1,
  max_retries: 1,
  output_location: { # required
    bucket: "Bucket", # required
    key: "Key",
  },
  role_arn: "Arn", # required
  timeout: 1,
}

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_key_arnString

The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of an encryption key that is used to protect the job.

#encryption_modeString

The encryption mode for the job, which can be one of the following:

  • SSE-KMS - Server-side encryption with AWS KMS-managed keys.

  • SSE-S3 - Server-side encryption with keys managed by Amazon S3.

    Possible values:

    • SSE-KMS
    • SSE-S3

Returns:

  • (String)

    The encryption mode for the job, which can be one of the following:.

#log_subscriptionString

A value that enables or disables Amazon CloudWatch logging for the current AWS account. If logging is enabled, CloudWatch writes one log stream for each job run.

Possible values:

  • ENABLE
  • DISABLE

Returns:

  • (String)

    A value that enables or disables Amazon CloudWatch logging for the current AWS account.

#max_capacityInteger

The maximum number of nodes that DataBrew can use when the job processes data.

Returns:

  • (Integer)

    The maximum number of nodes that DataBrew can use when the job processes data.

#max_retriesInteger

The maximum number of times to retry the job after a job run fails.

Returns:

  • (Integer)

    The maximum number of times to retry the job after a job run fails.

#nameString

The name of the job to be updated.

Returns:

  • (String)

    The name of the job to be updated.

#output_locationTypes::S3Location

An Amazon S3 location (bucket name an object key) where DataBrew can read input data, or write output from a job.

Returns:

  • (Types::S3Location)

    An Amazon S3 location (bucket name an object key) where DataBrew can read input data, or write output from a job.

    .

#role_arnString

The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

Returns:

  • (String)

    The Amazon Resource Name (ARN) of the AWS Identity and Access Management (IAM) role to be assumed for this request.

#timeoutInteger

The job\'s timeout in minutes. A job that attempts to run longer than this timeout period ends with a status of TIMEOUT.

Returns:

  • (Integer)

    The job\'s timeout in minutes.