Skip to content

List Rule Types

codepipeline_list_rule_types R Documentation

Lists the rules for the condition

Description

Lists the rules for the condition. For more information about conditions, see Stage conditions. For more information about rules, see the CodePipeline rule reference.

Usage

codepipeline_list_rule_types(ruleOwnerFilter, regionFilter)

Arguments

ruleOwnerFilter

The rule owner to filter on.

regionFilter

The rule Region to filter on.

Value

A list with the following syntax:

list(
  ruleTypes = list(
    list(
      id = list(
        category = "Rule",
        owner = "AWS",
        provider = "string",
        version = "string"
      ),
      settings = list(
        thirdPartyConfigurationUrl = "string",
        entityUrlTemplate = "string",
        executionUrlTemplate = "string",
        revisionUrlTemplate = "string"
      ),
      ruleConfigurationProperties = 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
      )
    )
  )
)

Request syntax

svc$list_rule_types(
  ruleOwnerFilter = "AWS",
  regionFilter = "string"
)