:doc:`CloudWatchObservabilityAdminService <../../observabilityadmin>` / Client / list_resource_telemetry_for_organization

****************************************
list_resource_telemetry_for_organization
****************************************



.. py:method:: CloudWatchObservabilityAdminService.Client.list_resource_telemetry_for_organization(**kwargs)

  

  Returns a list of telemetry configurations for Amazon Web Services resources supported by telemetry config in the organization.

  

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


  **Request Syntax**
  ::

    response = client.list_resource_telemetry_for_organization(
        AccountIdentifiers=[
            'string',
        ],
        ResourceIdentifierPrefix='string',
        ResourceTypes=[
            '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',
        ],
        TelemetryConfigurationState={
            'string': 'Enabled'|'Disabled'|'NotApplicable'
        },
        ResourceTags={
            'string': 'string'
        },
        MaxResults=123,
        NextToken='string'
    )
    
  :type AccountIdentifiers: list
  :param AccountIdentifiers: 

    A list of Amazon Web Services accounts used to filter the resources to those associated with the specified accounts.

    

  
    - *(string) --* 

    

  :type ResourceIdentifierPrefix: string
  :param ResourceIdentifierPrefix: 

    A string used to filter resources in the organization which have a ``ResourceIdentifier`` starting with the ``ResourceIdentifierPrefix``.

    

  
  :type ResourceTypes: list
  :param ResourceTypes: 

    A list of resource types used to filter resources in the organization. If this parameter is provided, the resources will be returned in the same order used in the request.

    

  
    - *(string) --* 

    

  :type TelemetryConfigurationState: dict
  :param TelemetryConfigurationState: 

    A key-value pair to filter resources in the organization based on the telemetry type and the state of the telemetry configuration. The key is the telemetry type and the value is the state.

    

  
    - *(string) --* 

    
      - *(string) --* 

      


  :type ResourceTags: dict
  :param ResourceTags: 

    A key-value pair to filter resources in the organization based on tags associated with the resource. Fore more information about tags, see `What are tags? <https://docs.aws.amazon.com/whitepapers/latest/tagging-best-practices/what-are-tags.html>`__

    

  
    - *(string) --* 

    
      - *(string) --* 

      


  :type MaxResults: integer
  :param MaxResults: 

    A number field used to limit the number of results within the returned list.

    

  
  :type NextToken: string
  :param NextToken: 

    The token for the next set of items to return. A previous call provides this token.

    

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

    
    ::

      {
          'TelemetryConfigurations': [
              {
                  'AccountIdentifier': 'string',
                  'TelemetryConfigurationState': {
                      'string': 'Enabled'|'Disabled'|'NotApplicable'
                  },
                  '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',
                  'ResourceIdentifier': 'string',
                  'ResourceTags': {
                      'string': 'string'
                  },
                  'LastUpdateTimeStamp': 123
              },
          ],
          'NextToken': 'string'
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TelemetryConfigurations** *(list) --* 

        A list of telemetry configurations for Amazon Web Services resources supported by telemetry config in the organization.

        
        

        - *(dict) --* 

          A model representing the state of a resource within an account according to telemetry config.

          
          

          - **AccountIdentifier** *(string) --* 

            The account ID which contains the resource managed in telemetry configuration. An example of a valid account ID is ``012345678901``.

            
          

          - **TelemetryConfigurationState** *(dict) --* 

            The configuration state for the resource, for example ``{ Logs: NotApplicable; Metrics: Enabled; Traces: NotApplicable; }``.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
          

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

            The type of resource, for example ``Amazon Web Services::EC2::Instance``, or ``Amazon Web Services::EKS::Cluster``, etc.

            
          

          - **ResourceIdentifier** *(string) --* 

            The identifier of the resource, for example for Amazon VPC, it would be ``vpc-1a2b3c4d5e6f1a2b3``.

            
          

          - **ResourceTags** *(dict) --* 

            Tags associated with the resource, for example ``{ Name: "ExampleInstance", Environment: "Development" }``.

            
            

            - *(string) --* 
              

              - *(string) --* 
        
      
          

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

            The timestamp of the last change to the telemetry configuration for the resource. For example, ``1728679196318``.

            
      
    
      

      - **NextToken** *(string) --* 

        The token for the next set of items to return. A previous call provides this token.

        
  
  **Exceptions**
  
  *   :py:class:`CloudWatchObservabilityAdminService.Client.exceptions.AccessDeniedException`

  
  *   :py:class:`CloudWatchObservabilityAdminService.Client.exceptions.InternalServerException`

  
  *   :py:class:`CloudWatchObservabilityAdminService.Client.exceptions.ValidationException`

  
  *   :py:class:`CloudWatchObservabilityAdminService.Client.exceptions.TooManyRequestsException`

  