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

Class: Aws::CodeDeploy::Types::RevisionLocation

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

Overview

Note:

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

{
  revision_type: "S3", # accepts S3, GitHub, String, AppSpecContent
  s3_location: {
    bucket: "S3Bucket",
    key: "S3Key",
    bundle_type: "tar", # accepts tar, tgz, zip, YAML, JSON
    version: "VersionId",
    e_tag: "ETag",
  },
  git_hub_location: {
    repository: "Repository",
    commit_id: "CommitId",
  },
  string: {
    content: "RawStringContent",
    sha256: "RawStringSha256",
  },
  app_spec_content: {
    content: "RawStringContent",
    sha256: "RawStringSha256",
  },
}

Information about the location of an application revision.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#app_spec_contentTypes::AppSpecContent

The content of an AppSpec file for an AWS Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML and stored as a RawString.

Returns:

#git_hub_locationTypes::GitHubLocation

Information about the location of application artifacts stored in GitHub.

Returns:

#revision_typeString

The type of application revision:

  • S3: An application revision stored in Amazon S3.

  • GitHub: An application revision stored in GitHub (EC2/On-premises deployments only).

  • String: A YAML-formatted or JSON-formatted string (AWS Lambda deployments only).

  • AppSpecContent: An AppSpecContent object that contains the contents of an AppSpec file for an AWS Lambda or Amazon ECS deployment. The content is formatted as JSON or YAML stored as a RawString.

    Possible values:

    • S3
    • GitHub
    • String
    • AppSpecContent

Returns:

  • (String)

    The type of application revision:.

#s3_locationTypes::S3Location

Information about the location of a revision stored in Amazon S3.

Returns:

  • (Types::S3Location)

    Information about the location of a revision stored in Amazon S3.

#stringTypes::RawString

Information about the location of an AWS Lambda deployment revision stored as a RawString.

Returns:

  • (Types::RawString)

    Information about the location of an AWS Lambda deployment revision stored as a RawString.