:doc:`CloudWatchObservabilityAdminService <../../observabilityadmin>` / Paginator / ListTelemetryRulesForOrganization

*********************************
ListTelemetryRulesForOrganization
*********************************



.. py:class:: CloudWatchObservabilityAdminService.Paginator.ListTelemetryRulesForOrganization

  ::

    
    paginator = client.get_paginator('list_telemetry_rules_for_organization')

  
  

  .. py:method:: paginate(**kwargs)

    Creates an iterator that will paginate through responses from :py:meth:`CloudWatchObservabilityAdminService.Client.list_telemetry_rules_for_organization`.

    See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/observabilityadmin-2018-05-10/ListTelemetryRulesForOrganization>`_    


    **Request Syntax**
    ::

      response_iterator = paginator.paginate(
          RuleNamePrefix='string',
          SourceAccountIds=[
              'string',
          ],
          SourceOrganizationUnitIds=[
              'string',
          ],
          PaginationConfig={
              'MaxItems': 123,
              'PageSize': 123,
              'StartingToken': 'string'
          }
      )
      
    :type RuleNamePrefix: string
    :param RuleNamePrefix: 

      A string to filter organization telemetry rules whose names begin with the specified prefix.

      

    
    :type SourceAccountIds: list
    :param SourceAccountIds: 

      The list of account IDs to filter organization telemetry rules by their source accounts.

      

    
      - *(string) --* 

      
  
    :type SourceOrganizationUnitIds: list
    :param SourceOrganizationUnitIds: 

      The list of organizational unit IDs to filter organization telemetry rules by their source organizational units.

      

    
      - *(string) --* 

      
  
    :type PaginationConfig: dict
    :param PaginationConfig: 

      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.

        

      
    
    
    :rtype: dict
    :returns: 
      
      **Response Syntax**

      
      ::

        {
            'TelemetryRuleSummaries': [
                {
                    'RuleName': 'string',
                    'RuleArn': 'string',
                    'CreatedTimeStamp': 123,
                    'LastUpdateTimeStamp': 123,
                    'ResourceType': 'AWS::EC2::Instance'|'AWS::EC2::VPC'|'AWS::Lambda::Function'|'AWS::CloudTrail'|'AWS::EKS::Cluster'|'AWS::WAFv2::WebACL'|'AWS::ElasticLoadBalancingV2::LoadBalancer'|'AWS::Route53Resolver::ResolverEndpoint'|'AWS::BedrockAgentCore::Runtime'|'AWS::BedrockAgentCore::Browser'|'AWS::BedrockAgentCore::CodeInterpreter',
                    'TelemetryType': 'Logs'|'Metrics'|'Traces',
                    'TelemetrySourceTypes': [
                        'VPC_FLOW_LOGS'|'ROUTE53_RESOLVER_QUERY_LOGS'|'EKS_AUDIT_LOGS'|'EKS_AUTHENTICATOR_LOGS'|'EKS_CONTROLLER_MANAGER_LOGS'|'EKS_SCHEDULER_LOGS'|'EKS_API_LOGS',
                    ]
                },
            ],
            
        }
        
      **Response Structure**

      

      - *(dict) --* 
        

        - **TelemetryRuleSummaries** *(list) --* 

          A list of organization telemetry rule summaries.

          
          

          - *(dict) --* 

            A summary of a telemetry rule's key properties.

            
            

            - **RuleName** *(string) --* 

              The name of the telemetry rule.

              
            

            - **RuleArn** *(string) --* 

              The Amazon Resource Name (ARN) of the telemetry rule.

              
            

            - **CreatedTimeStamp** *(integer) --* 

              The timestamp when the telemetry rule was created.

              
            

            - **LastUpdateTimeStamp** *(integer) --* 

              The timestamp when the telemetry rule was last modified.

              
            

            - **ResourceType** *(string) --* 

              The type of Amazon Web Services resource the rule applies to.

              
            

            - **TelemetryType** *(string) --* 

              The type of telemetry (Logs, Metrics, or Traces) the rule configures.

              
            

            - **TelemetrySourceTypes** *(list) --* 

              The types of telemetry sources configured for this rule, such as VPC Flow Logs or EKS audit logs. TelemetrySourceTypes must be correlated with the specific resource type.

              
              

              - *(string) --* 

                Specifies the type of telemetry source for a resource, such as EKS cluster logs.

                
          
        
      
    