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.
14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14724 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
14724 14725 14726 |
# File 'gems/aws-sdk-datazone/lib/aws-sdk-datazone/types.rb', line 14724 def unknown @unknown end |