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¶
actionOwnerFilter
Filters the list of action types to those created by a specified entity.
nextToken
An 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.
regionFilter
The 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"
)