BatchBuildConfig
- class aws_cdk.aws_codebuild.BatchBuildConfig(*, role)
Bases:
object
The type returned from
IProject#enableBatchBuilds
.- Parameters:
role (
IRole
) – The IAM batch service Role of this Project.- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_codebuild as codebuild from aws_cdk import aws_iam as iam # role: iam.Role batch_build_config = codebuild.BatchBuildConfig( role=role )
Attributes
- role
The IAM batch service Role of this Project.