Classes
Name | Description |
---|---|
CodePipelineDockerfileLinterAction | No description |
Structs
Name | Description |
---|---|
CodePipelineDockerfileLinterActionProps | No description |
Implements: IAction Extends: Action
new CodePipelineDockerfileLinterAction(props: CodePipelineDockerfileLinterActionProps)
- props (
CodePipelineDockerfileLinterActionProps
) No description- actionName (
string
) The physical, human-readable name of the Action. - runOrder (
number
) The runOrder property for this Action. Default: 1 - variablesNamespace (
string
) The name of the namespace to use for variables emitted by this action. Default: a name will be generated, based on the stage and action names, if any of the action's variables were referenced - otherwise, no namespace will be set - role (
IRole
) The Role in which context's this Action will be executing in. Default: a new Role will be generated - input (
Artifact
) The source to use as input for this action. - computeType (
ComputeType
) The type of compute to use for backup the repositories. Default: taken from {@link LinuxBuildImage.STANDARD_4_0#defaultComputeType} - version (
string
) Version of hadolint. Default: v1.19.0
- actionName (
(experimental) The method called when an Action is attached to a Pipeline.
This method is guaranteed to be called only once for each Action instance.
protected bound(scope: Construct, _stage: IStage, options: ActionBindOptions): ActionConfig
- scope (
Construct
) No description - _stage (
IStage
) No description - options (
ActionBindOptions
) No description
Returns:
Name | Type | Description |
---|---|---|
actionName | string |
The physical, human-readable name of the Action. |
input | Artifact |
The source to use as input for this action. |
computeType? | ComputeType |
The type of compute to use for backup the repositories. Default: taken from {@link LinuxBuildImage.STANDARD_4_0#defaultComputeType} |
role? | IRole |
The Role in which context's this Action will be executing in. Default: a new Role will be generated |
runOrder? | number |
The runOrder property for this Action. Default: 1 |
variablesNamespace? | string |
The name of the namespace to use for variables emitted by this action. Default: a name will be generated, based on the stage and action names, if any of the action's variables were referenced - otherwise, no namespace will be set |
version? | string |
Version of hadolint. Default: v1.19.0 |