:doc:`EC2 <../../ec2>` / Client / modify_verified_access_instance

*******************************
modify_verified_access_instance
*******************************



.. py:method:: EC2.Client.modify_verified_access_instance(**kwargs)

  

  Modifies the configuration of the specified Amazon Web Services Verified Access instance.

  

  See also: `AWS API Documentation <https://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessInstance>`_  


  **Request Syntax**
  ::

    response = client.modify_verified_access_instance(
        VerifiedAccessInstanceId='string',
        Description='string',
        DryRun=True|False,
        ClientToken='string',
        CidrEndpointsCustomSubDomain='string'
    )
    
  :type VerifiedAccessInstanceId: string
  :param VerifiedAccessInstanceId: **[REQUIRED]** 

    The ID of the Verified Access instance.

    

  
  :type Description: string
  :param Description: 

    A description for the Verified Access instance.

    

  
  :type DryRun: boolean
  :param DryRun: 

    Checks whether you have the required permissions for the action, without actually making the request, and provides an error response. If you have the required permissions, the error response is ``DryRunOperation``. Otherwise, it is ``UnauthorizedOperation``.

    

  
  :type ClientToken: string
  :param ClientToken: 

    A unique, case-sensitive token that you provide to ensure idempotency of your modification request. For more information, see `Ensuring idempotency <https://docs.aws.amazon.com/ec2/latest/devguide/ec2-api-idempotency.html>`__.

    This field is autopopulated if not provided.

  
  :type CidrEndpointsCustomSubDomain: string
  :param CidrEndpointsCustomSubDomain: 

    The custom subdomain.

    

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

    
    ::

      {
          'VerifiedAccessInstance': {
              'VerifiedAccessInstanceId': 'string',
              'Description': 'string',
              'VerifiedAccessTrustProviders': [
                  {
                      'VerifiedAccessTrustProviderId': 'string',
                      'Description': 'string',
                      'TrustProviderType': 'user'|'device',
                      'UserTrustProviderType': 'iam-identity-center'|'oidc',
                      'DeviceTrustProviderType': 'jamf'|'crowdstrike'|'jumpcloud'
                  },
              ],
              'CreationTime': 'string',
              'LastUpdatedTime': 'string',
              'Tags': [
                  {
                      'Key': 'string',
                      'Value': 'string'
                  },
              ],
              'FipsEnabled': True|False,
              'CidrEndpointsCustomSubDomain': {
                  'SubDomain': 'string',
                  'Nameservers': [
                      'string',
                  ]
              }
          }
      }
      
    **Response Structure**

    

    - *(dict) --* 
      

      - **VerifiedAccessInstance** *(dict) --* 

        Details about the Verified Access instance.

        
        

        - **VerifiedAccessInstanceId** *(string) --* 

          The ID of the Amazon Web Services Verified Access instance.

          
        

        - **Description** *(string) --* 

          A description for the Amazon Web Services Verified Access instance.

          
        

        - **VerifiedAccessTrustProviders** *(list) --* 

          The IDs of the Amazon Web Services Verified Access trust providers.

          
          

          - *(dict) --* 

            Condensed information about a trust provider.

            
            

            - **VerifiedAccessTrustProviderId** *(string) --* 

              The ID of the trust provider.

              
            

            - **Description** *(string) --* 

              The description of trust provider.

              
            

            - **TrustProviderType** *(string) --* 

              The type of trust provider (user- or device-based).

              
            

            - **UserTrustProviderType** *(string) --* 

              The type of user-based trust provider.

              
            

            - **DeviceTrustProviderType** *(string) --* 

              The type of device-based trust provider.

              
        
      
        

        - **CreationTime** *(string) --* 

          The creation time.

          
        

        - **LastUpdatedTime** *(string) --* 

          The last updated time.

          
        

        - **Tags** *(list) --* 

          The tags.

          
          

          - *(dict) --* 

            Describes a tag.

            
            

            - **Key** *(string) --* 

              The key of the tag.

               

              Constraints: Tag keys are case-sensitive and accept a maximum of 127 Unicode characters. May not begin with ``aws:``.

              
            

            - **Value** *(string) --* 

              The value of the tag.

               

              Constraints: Tag values are case-sensitive and accept a maximum of 256 Unicode characters.

              
        
      
        

        - **FipsEnabled** *(boolean) --* 

          Indicates whether support for Federal Information Processing Standards (FIPS) is enabled on the instance.

          
        

        - **CidrEndpointsCustomSubDomain** *(dict) --* 

          The custom subdomain.

          
          

          - **SubDomain** *(string) --* 

            The subdomain.

            
          

          - **Nameservers** *(list) --* 

            The name servers.

            
            

            - *(string) --* 
        
      
    
  