Class: Aws::NetworkSecurityManager::Types::OutOfSyncReasonsView
- Inherits:
-
Struct
- Object
- Struct
- Aws::NetworkSecurityManager::Types::OutOfSyncReasonsView
- Defined in:
- gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb
Overview
Note:
OutOfSyncReasonsView is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OutOfSyncReasonsView corresponding to the set member.
The out-of-sync reasons for a resource, or a marker indicating that the details are not visible. Exactly one member is set.
Defined Under Namespace
Classes: NotVisible, Reasons, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#not_visible ⇒ Types::NotVisibleMarker
Indicates that the details are not visible because of cross-account restrictions.
-
#reasons ⇒ Hash<String,Types::FirewallSyncReason>
The out-of-sync reasons, keyed by firewall type.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#not_visible ⇒ Types::NotVisibleMarker
Indicates that the details are not visible because of cross-account restrictions.
3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 |
# File 'gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb', line 3221 class OutOfSyncReasonsView < Struct.new( :reasons, :not_visible, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Reasons < OutOfSyncReasonsView; end class NotVisible < OutOfSyncReasonsView; end class Unknown < OutOfSyncReasonsView; end end |
#reasons ⇒ Hash<String,Types::FirewallSyncReason>
The out-of-sync reasons, keyed by firewall type.
3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 |
# File 'gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb', line 3221 class OutOfSyncReasonsView < Struct.new( :reasons, :not_visible, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Reasons < OutOfSyncReasonsView; end class NotVisible < OutOfSyncReasonsView; end class Unknown < OutOfSyncReasonsView; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
3221 3222 3223 |
# File 'gems/aws-sdk-networksecuritymanager/lib/aws-sdk-networksecuritymanager/types.rb', line 3221 def unknown @unknown end |