List Action Types
| codepipeline_list_action_types | R Documentation |
Gets a summary of all CodePipeline action types associated with your account¶
Description¶
Gets a summary of all CodePipeline action types associated with your account.
Usage¶
Arguments¶
actionOwnerFilterFilters the list of action types to those created by a specified entity.
nextTokenAn identifier that was returned from the previous list action types call, which can be used to return the next set of action types in the list.
regionFilterThe Region to filter on for the list of action types.
Value¶
A list with the following syntax:
list(
actionTypes = list(
list(
id = list(
category = "Source"|"Build"|"Deploy"|"Test"|"Invoke"|"Approval",
owner = "AWS"|"ThirdParty"|"Custom",
provider = "string",
version = "string"
),
settings = list(
thirdPartyConfigurationUrl = "string",
entityUrlTemplate = "string",
executionUrlTemplate = "string",
revisionUrlTemplate = "string"
),
actionConfigurationProperties = list(
list(
name = "string",
required = TRUE|FALSE,
key = TRUE|FALSE,
secret = TRUE|FALSE,
queryable = TRUE|FALSE,
description = "string",
type = "String"|"Number"|"Boolean"
)
),
inputArtifactDetails = list(
minimumCount = 123,
maximumCount = 123
),
outputArtifactDetails = list(
minimumCount = 123,
maximumCount = 123
)
)
),
nextToken = "string"
)