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

Class: Aws::SecurityHub::Types::AwsCodeBuildProjectDetails

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

Overview

Note:

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

{
  encryption_key: "NonEmptyString",
  environment: {
    certificate: "NonEmptyString",
    image_pull_credentials_type: "NonEmptyString",
    registry_credential: {
      credential: "NonEmptyString",
      credential_provider: "NonEmptyString",
    },
    type: "NonEmptyString",
  },
  name: "NonEmptyString",
  source: {
    type: "NonEmptyString",
    location: "NonEmptyString",
    git_clone_depth: 1,
    insecure_ssl: false,
  },
  service_role: "NonEmptyString",
  vpc_config: {
    vpc_id: "NonEmptyString",
    subnets: ["NonEmptyString"],
    security_group_ids: ["NonEmptyString"],
  },
}

Information about an AWS CodeBuild project.

Returned by:

Instance Attribute Summary collapse

Instance Attribute Details

#encryption_keyString

The AWS Key Management Service (AWS KMS) customer master key (CMK) used to encrypt the build output artifacts.

You can specify either the Amazon Resource Name (ARN) of the CMK or, if available, the CMK alias (using the format alias/alias-name).

Returns:

  • (String)

    The AWS Key Management Service (AWS KMS) customer master key (CMK) used to encrypt the build output artifacts.

#environmentTypes::AwsCodeBuildProjectEnvironment

Information about the build environment for this build project.

Returns:

#nameString

The name of the build project.

Returns:

  • (String)

    The name of the build project.

#service_roleString

The ARN of the IAM role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

Returns:

  • (String)

    The ARN of the IAM role that enables AWS CodeBuild to interact with dependent AWS services on behalf of the AWS account.

#sourceTypes::AwsCodeBuildProjectSource

Information about the build input source code for this build project.

Returns:

#vpc_configTypes::AwsCodeBuildProjectVpcConfig

Information about the VPC configuration that AWS CodeBuild accesses.

Returns: