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.
16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16423 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
16423 16424 16425 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 16423 def unknown @unknown end |