Class: Aws::EKS::Types::DisassociateIdentityProviderConfigRequest
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EKS::Types::DisassociateIdentityProviderConfigRequest
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-eks/types.rb
 
Overview
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #client_request_token  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
 - 
  
    
      #cluster_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of your cluster.
 - 
  
    
      #identity_provider_config  ⇒ Types::IdentityProviderConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
An object representing an identity provider configuration.
 
Instance Attribute Details
#client_request_token ⇒ String
A unique, case-sensitive identifier that you provide to ensure the idempotency of the request.
**A suitable default value is auto-generated.** You should normally not need to pass this option.
      2753 2754 2755 2756 2757 2758 2759  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2753 class DisassociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :identity_provider_config, :client_request_token) SENSITIVE = [] include Aws::Structure end  | 
  
#cluster_name ⇒ String
The name of your cluster.
      2753 2754 2755 2756 2757 2758 2759  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2753 class DisassociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :identity_provider_config, :client_request_token) SENSITIVE = [] include Aws::Structure end  | 
  
#identity_provider_config ⇒ Types::IdentityProviderConfig
An object representing an identity provider configuration.
      2753 2754 2755 2756 2757 2758 2759  | 
    
      # File 'lib/aws-sdk-eks/types.rb', line 2753 class DisassociateIdentityProviderConfigRequest < Struct.new( :cluster_name, :identity_provider_config, :client_request_token) SENSITIVE = [] include Aws::Structure end  |