Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add QueuedTimeoutInMinutes parameter to CodeBuild Project #1540

Closed
matt-mertens opened this issue Dec 15, 2019 · 2 comments
Closed

Add QueuedTimeoutInMinutes parameter to CodeBuild Project #1540

matt-mertens opened this issue Dec 15, 2019 · 2 comments

Comments

@matt-mertens
Copy link
Contributor

matt-mertens commented Dec 15, 2019

Description:
A QueuedTimeoutInMinutes parameter should be added to the CodeBuild Project Class. QueuedTimeoutInMinutes specifies the number of minutes a build is allowed to be queued before it times out. It is similar to TimeoutInMinutes but is for queued builds.

https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-codebuild-project.html#cfn-codebuild-project-queuedtimeoutinminutes

@PatMyron
Copy link
Contributor

This has been in the CloudFormation Resource Specifications for a while. This should get updated next time the Resource Specifications are used to update resource types:

class Project(AWSObject):
resource_type = "AWS::CodeBuild::Project"
props = {
'Artifacts': (Artifacts, True),
'BadgeEnabled': (boolean, False),
'Cache': (ProjectCache, False),
'Description': (basestring, False),
'EncryptionKey': (basestring, False),
'Environment': (Environment, True),
"LogsConfig": (LogsConfig, False),
'Name': (basestring, False),
'SecondaryArtifacts': ([Artifacts], False),
'SecondarySourceVersions': ([ProjectSourceVersion], False),
'SecondarySources': ([Source], False),
'ServiceRole': (basestring, True),
'Source': (Source, True),
'SourceVersion': (basestring, False),
'Tags': (Tags, False),
'TimeoutInMinutes': (integer, False),
'Triggers': (ProjectTriggers, False),
'VpcConfig': (VpcConfig, False),
}

@markpeek
Copy link
Member

Added to Project. Thanks.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants