Class: Aws::DataZone::Types::ProjectGrantFilter
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DataZone::Types::ProjectGrantFilter
 
- Defined in:
- gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb
Overview
    Note:
    
  
  ProjectGrantFilter is a union - when making an API calls you must set exactly one of the members.
    Note:
    
  
ProjectGrantFilter is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProjectGrantFilter corresponding to the set member.
The project grant filter.
Direct Known Subclasses
Defined Under Namespace
Classes: DomainUnitFilter, Unknown
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #domain_unit_filter  ⇒ Types::DomainUnitFilterForProject 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The domain unit filter of the project grant filter. 
- 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Returns the value of attribute unknown. 
Instance Attribute Details
#domain_unit_filter ⇒ Types::DomainUnitFilterForProject
The domain unit filter of the project grant filter.
| 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 | # File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15947 class ProjectGrantFilter < Struct.new( :domain_unit_filter, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class DomainUnitFilter < ProjectGrantFilter; end class Unknown < ProjectGrantFilter; end end | 
#unknown ⇒ Object
Returns the value of attribute unknown
| 15947 15948 15949 | # File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 15947 def unknown @unknown end |