Class: Aws::SecurityHub::Types::CspmProviderConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::CspmProviderConfiguration
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Note:
CspmProviderConfiguration is a union - when making an API calls you must set exactly one of the members.
The cloud provider configuration for creating a connector. This is a union type that currently supports Azure.
Defined Under Namespace
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#azure ⇒ Types::AzureProviderConfiguration
The Azure provider configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#azure ⇒ Types::AzureProviderConfiguration
The Azure provider configuration.
23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 23907 class CspmProviderConfiguration < Struct.new( :azure, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class Azure < CspmProviderConfiguration; end class Unknown < CspmProviderConfiguration; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
23907 23908 23909 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 23907 def unknown @unknown end |