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

Class: Aws::Signer::Types::StartSigningJobRequest

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

Overview

Note:

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

{
  source: { # required
    s3: {
      bucket_name: "BucketName", # required
      key: "Key", # required
      version: "Version", # required
    },
  },
  destination: { # required
    s3: {
      bucket_name: "BucketName",
      prefix: "Prefix",
    },
  },
  profile_name: "ProfileName",
  client_request_token: "ClientRequestToken", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#client_request_tokenString

String that identifies the signing request. All calls after the first that use this token return the same response as the first call.

Returns:

  • (String)

    String that identifies the signing request.

#destinationTypes::Destination

The S3 bucket in which to save your signed object. The destination contains the name of your bucket and an optional prefix.

Returns:

#profile_nameString

The name of the signing profile.

Returns:

  • (String)

    The name of the signing profile.

#sourceTypes::Source

The S3 bucket that contains the object to sign or a BLOB that contains your raw code.

Returns:

  • (Types::Source)

    The S3 bucket that contains the object to sign or a BLOB that contains your raw code.