Class: Aws::Inspector2::Types::ProviderDetailCreate

Inherits:
Struct
  • Object
show all
Includes:
Structure, Structure::Union
Defined in:
lib/aws-sdk-inspector2/types.rb

Overview

Note:

ProviderDetailCreate is a union - when making an API calls you must set exactly one of the members.

The provider-specific configuration details for creating a connector.

Defined Under Namespace

Classes: Azure, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#azure ⇒ Types::AzureProviderDetailCreate

The Azure-specific details for creating a connector.



8603
8604
8605
8606
8607
8608
8609
8610
8611
8612
# File 'lib/aws-sdk-inspector2/types.rb', line 8603

class ProviderDetailCreate < Struct.new(
  :azure,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class Azure < ProviderDetailCreate; end
  class Unknown < ProviderDetailCreate; end
end

#unknown ⇒ Object

Returns the value of attribute unknown

Returns:

  • (Object) —

    the current value of unknown



8603
8604
8605
# File 'lib/aws-sdk-inspector2/types.rb', line 8603

def unknown
  @unknown
end