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

Class: Aws::CodeStar::Types::Toolchain

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

Overview

Note:

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

{
  source: { # required
    s3: { # required
      bucket_name: "BucketName",
      bucket_key: "BucketKey",
    },
  },
  role_arn: "RoleArn",
  stack_parameters: {
    "TemplateParameterKey" => "TemplateParameterValue",
  },
}

The toolchain template file provided with the project request. AWS CodeStar uses the template to provision the toolchain stack in AWS CloudFormation.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#role_arnString

The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.

Returns:

  • (String)

    The service role ARN for AWS CodeStar to use for the toolchain template during stack provisioning.

#sourceTypes::ToolchainSource

The Amazon S3 location where the toolchain template file provided with the project request is stored. AWS CodeStar retrieves the file during project creation.

Returns:

  • (Types::ToolchainSource)

    The Amazon S3 location where the toolchain template file provided with the project request is stored.

#stack_parametersHash<String,String>

The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.

Returns:

  • (Hash<String,String>)

    The list of parameter overrides to be passed into the toolchain template during stack provisioning, if any.