Class: Aws::SecurityAgent::Types::SelfManagedInput

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-securityagent/types.rb

Overview

The configuration for a self-managed private connection.

Constant Summary collapse

SENSITIVE =
[:certificate]

Instance Attribute Summary collapse

Instance Attribute Details

#certificateString

The certificate for the private connection.

Returns:

  • (String)


6701
6702
6703
6704
6705
6706
# File 'lib/aws-sdk-securityagent/types.rb', line 6701

class SelfManagedInput < Struct.new(
  :resource_configuration_id,
  :certificate)
  SENSITIVE = [:certificate]
  include Aws::Structure
end

#resource_configuration_idString

The identifier or ARN of the resource configuration.

Returns:

  • (String)


6701
6702
6703
6704
6705
6706
# File 'lib/aws-sdk-securityagent/types.rb', line 6701

class SelfManagedInput < Struct.new(
  :resource_configuration_id,
  :certificate)
  SENSITIVE = [:certificate]
  include Aws::Structure
end