ServiceCatalog / Paginator / ListProvisioningArtifactsForServiceAction

ListProvisioningArtifactsForServiceAction#

class ServiceCatalog.Paginator.ListProvisioningArtifactsForServiceAction#
paginator = client.get_paginator('list_provisioning_artifacts_for_service_action')
paginate(**kwargs)#

Creates an iterator that will paginate through responses from ServiceCatalog.Client.list_provisioning_artifacts_for_service_action().

See also: AWS API Documentation

Request Syntax

response_iterator = paginator.paginate(
    ServiceActionId='string',
    AcceptLanguage='string',
    PaginationConfig={
        'MaxItems': 123,
        'PageSize': 123,
        'StartingToken': 'string'
    }
)
Parameters:
  • ServiceActionId (string) –

    [REQUIRED]

    The self-service action identifier. For example, act-fs7abcd89wxyz.

  • AcceptLanguage (string) –

    The language code.

    • jp - Japanese

    • zh - Chinese

  • PaginationConfig (dict) –

    A dictionary that provides parameters to control pagination.

    • MaxItems (integer) –

      The total number of items to return. If the total number of items available is more than the value specified in max-items then a NextToken will be provided in the output that you can use to resume pagination.

    • PageSize (integer) –

      The size of each page.

    • StartingToken (string) –

      A token to specify where to start paginating. This is the NextToken from a previous response.

Return type:

dict

Returns:

Response Syntax

{
    'ProvisioningArtifactViews': [
        {
            'ProductViewSummary': {
                'Id': 'string',
                'ProductId': 'string',
                'Name': 'string',
                'Owner': 'string',
                'ShortDescription': 'string',
                'Type': 'CLOUD_FORMATION_TEMPLATE'|'MARKETPLACE'|'TERRAFORM_OPEN_SOURCE'|'TERRAFORM_CLOUD'|'EXTERNAL',
                'Distributor': 'string',
                'HasDefaultPath': True|False,
                'SupportEmail': 'string',
                'SupportDescription': 'string',
                'SupportUrl': 'string'
            },
            'ProvisioningArtifact': {
                'Id': 'string',
                'Name': 'string',
                'Description': 'string',
                'CreatedTime': datetime(2015, 1, 1),
                'Guidance': 'DEFAULT'|'DEPRECATED'
            }
        },
    ],
    'NextToken': 'string'
}

Response Structure

  • (dict) –

    • ProvisioningArtifactViews (list) –

      An array of objects with information about product views and provisioning artifacts.

      • (dict) –

        An object that contains summary information about a product view and a provisioning artifact.

        • ProductViewSummary (dict) –

          Summary information about a product view.

          • Id (string) –

            The product view identifier.

          • ProductId (string) –

            The product identifier.

          • Name (string) –

            The name of the product.

          • Owner (string) –

            The owner of the product. Contact the product administrator for the significance of this value.

          • ShortDescription (string) –

            Short description of the product.

          • Type (string) –

            The product type. Contact the product administrator for the significance of this value. If this value is MARKETPLACE, the product was created by Amazon Web Services Marketplace.

          • Distributor (string) –

            The distributor of the product. Contact the product administrator for the significance of this value.

          • HasDefaultPath (boolean) –

            Indicates whether the product has a default path. If the product does not have a default path, call ListLaunchPaths to disambiguate between paths. Otherwise, ListLaunchPaths is not required, and the output of ProductViewSummary can be used directly with DescribeProvisioningParameters.

          • SupportEmail (string) –

            The email contact information to obtain support for this Product.

          • SupportDescription (string) –

            The description of the support for this Product.

          • SupportUrl (string) –

            The URL information to obtain support for this Product.

        • ProvisioningArtifact (dict) –

          Information about a provisioning artifact. A provisioning artifact is also known as a product version.

          • Id (string) –

            The identifier of the provisioning artifact.

          • Name (string) –

            The name of the provisioning artifact.

          • Description (string) –

            The description of the provisioning artifact.

          • CreatedTime (datetime) –

            The UTC time stamp of the creation time.

          • Guidance (string) –

            Information set by the administrator to provide guidance to end users about which provisioning artifacts to use.

    • NextToken (string) –

      A token to resume pagination.