ProjectSourceAuth constructor

const ProjectSourceAuth({
  1. required Input<String> resource,
  2. required Input<String> type,
})

Creates a new ProjectSourceAuth. resource The ARN of the resource to use for authentication. For type CODECONNECTIONS this should be type The type of authentication AWS CodeBuild should perform. Valid values are CODECONNECTIONS and

Implementation

const ProjectSourceAuth({
  required this.resource,
  required this.type,
});