:doc:`ElasticLoadBalancingv2 <../../elbv2>` / Client / modify_trust_store

******************
modify_trust_store
******************



.. py:method:: ElasticLoadBalancingv2.Client.modify_trust_store(**kwargs)

  

  Update the ca certificate bundle for the specified trust store.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/elasticloadbalancingv2-2015-12-01/ModifyTrustStore>`_  


  **Request Syntax**
  ::

    response = client.modify_trust_store(
        TrustStoreArn='string',
        CaCertificatesBundleS3Bucket='string',
        CaCertificatesBundleS3Key='string',
        CaCertificatesBundleS3ObjectVersion='string'
    )
    
  :type TrustStoreArn: string
  :param TrustStoreArn: **[REQUIRED]** 

    The Amazon Resource Name (ARN) of the trust store.

    

  
  :type CaCertificatesBundleS3Bucket: string
  :param CaCertificatesBundleS3Bucket: **[REQUIRED]** 

    The Amazon S3 bucket for the ca certificates bundle.

    

  
  :type CaCertificatesBundleS3Key: string
  :param CaCertificatesBundleS3Key: **[REQUIRED]** 

    The Amazon S3 path for the ca certificates bundle.

    

  
  :type CaCertificatesBundleS3ObjectVersion: string
  :param CaCertificatesBundleS3ObjectVersion: 

    The Amazon S3 object version for the ca certificates bundle. If undefined the current version is used.

    

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

    
    ::

      {
          'TrustStores': [
              {
                  'Name': 'string',
                  'TrustStoreArn': 'string',
                  'Status': 'ACTIVE'|'CREATING',
                  'NumberOfCaCertificates': 123,
                  'TotalRevokedEntries': 123
              },
          ]
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **TrustStores** *(list) --* 

        Information about the modified trust store.

        
        

        - *(dict) --* 

          Information about a trust store.

          
          

          - **Name** *(string) --* 

            The name of the trust store.

            
          

          - **TrustStoreArn** *(string) --* 

            The Amazon Resource Name (ARN) of the trust store.

            
          

          - **Status** *(string) --* 

            The current status of the trust store.

            
          

          - **NumberOfCaCertificates** *(integer) --* 

            The number of ca certificates in the trust store.

            
          

          - **TotalRevokedEntries** *(integer) --* 

            The number of revoked certificates in the trust store.

            
      
    
  
  **Exceptions**
  
  *   :py:class:`ElasticLoadBalancingv2.Client.exceptions.TrustStoreNotFoundException`

  
  *   :py:class:`ElasticLoadBalancingv2.Client.exceptions.InvalidCaCertificatesBundleException`

  
  *   :py:class:`ElasticLoadBalancingv2.Client.exceptions.CaCertificatesBundleNotFoundException`

  