Class: Aws::BedrockAgentCoreControl::Types::PrivateEndpoint

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb

Overview

Note:

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

Note:

PrivateEndpoint is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of PrivateEndpoint corresponding to the set member.

The private endpoint configuration for a gateway target. Defines how the gateway connects to private resources in your VPC.

Defined Under Namespace

Classes: ManagedVpcResource, SelfManagedLatticeResource, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#managed_vpc_resourceTypes::ManagedVpcResource

Configuration for connecting to a private resource using a managed VPC Lattice resource. The gateway creates and manages the VPC Lattice resources on your behalf.



13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13472

class PrivateEndpoint < Struct.new(
  :self_managed_lattice_resource,
  :managed_vpc_resource,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SelfManagedLatticeResource < PrivateEndpoint; end
  class ManagedVpcResource < PrivateEndpoint; end
  class Unknown < PrivateEndpoint; end
end

#self_managed_lattice_resourceTypes::SelfManagedLatticeResource

Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.



13472
13473
13474
13475
13476
13477
13478
13479
13480
13481
13482
13483
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13472

class PrivateEndpoint < Struct.new(
  :self_managed_lattice_resource,
  :managed_vpc_resource,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class SelfManagedLatticeResource < PrivateEndpoint; end
  class ManagedVpcResource < PrivateEndpoint; end
  class Unknown < PrivateEndpoint; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



13472
13473
13474
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13472

def unknown
  @unknown
end