Class: Aws::SecurityHub::Types::ProviderDetail
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::ProviderDetail
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
ProviderDetail is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ProviderDetail corresponding to the set member.
The third-party provider detail for a service configuration.
Direct Known Subclasses
Defined Under Namespace
Classes: JiraCloud, ServiceNow, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#jira_cloud ⇒ Types::JiraCloudDetail
Details about a Jira Cloud integration.
-
#service_now ⇒ Types::ServiceNowDetail
Details about a ServiceNow ITSM integration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#jira_cloud ⇒ Types::JiraCloudDetail
Details about a Jira Cloud integration.
29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29021 class ProviderDetail < Struct.new( :jira_cloud, :service_now, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class JiraCloud < ProviderDetail; end class ServiceNow < ProviderDetail; end class Unknown < ProviderDetail; end end |
#service_now ⇒ Types::ServiceNowDetail
Details about a ServiceNow ITSM integration.
29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29021 class ProviderDetail < Struct.new( :jira_cloud, :service_now, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class JiraCloud < ProviderDetail; end class ServiceNow < ProviderDetail; end class Unknown < ProviderDetail; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
29021 29022 29023 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 29021 def unknown @unknown end |