Class: Aws::SecurityHub::Types::ProviderDetail

Inherits:
Struct
  • Object
show all
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

JiraCloud, ServiceNow, Unknown

Defined Under Namespace

Classes: JiraCloud, ServiceNow, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#jira_cloudTypes::JiraCloudDetail

Details about a Jira Cloud integration.



28822
28823
28824
28825
28826
28827
28828
28829
28830
28831
28832
28833
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 28822

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_nowTypes::ServiceNowDetail

Details about a ServiceNow ITSM integration.



28822
28823
28824
28825
28826
28827
28828
28829
28830
28831
28832
28833
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 28822

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

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



28822
28823
28824
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 28822

def unknown
  @unknown
end