ProjectSecondarySourceAuth constructor

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

Creates a new ProjectSecondarySourceAuth. 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 ProjectSecondarySourceAuth({
  required this.resource,
  required this.type,
});