Skip to content

List App Input Sources

resiliencehub_list_app_input_sources R Documentation

Lists all the input sources of the Resilience Hub application

Description

Lists all the input sources of the Resilience Hub application. For more information about the input sources supported by Resilience Hub, see Discover the structure and describe your Resilience Hub application.

Usage

resiliencehub_list_app_input_sources(appArn, appVersion, maxResults,
  nextToken)

Arguments

appArn

[required] Amazon Resource Name (ARN) of the Resilience Hub application. The format for this ARN is: arn:partition:resiliencehub:region:account:app/app-id. For more information about ARNs, see Amazon Resource Names (ARNs) in the Amazon Web Services General Reference guide.

appVersion

[required] Resilience Hub application version.

maxResults

Maximum number of input sources to be displayed per Resilience Hub application.

nextToken

Null, or the token from a previous call to get the next set of results.

Value

A list with the following syntax:

list(
  appInputSources = list(
    list(
      eksSourceClusterNamespace = list(
        eksClusterArn = "string",
        namespace = "string"
      ),
      importType = "CfnStack"|"Resource"|"AppRegistryApp"|"ResourceGroup"|"Terraform"|"EKS",
      resourceCount = 123,
      sourceArn = "string",
      sourceName = "string",
      terraformSource = list(
        s3StateFileUrl = "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_app_input_sources(
  appArn = "string",
  appVersion = "string",
  maxResults = 123,
  nextToken = "string"
)