Class: Aws::BedrockAgentCoreControl::Types::PrivateEndpoint
- Inherits:
-
Struct
- Object
- Struct
- Aws::BedrockAgentCoreControl::Types::PrivateEndpoint
- Defined in:
- gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb
Overview
PrivateEndpoint is a union - when making an API calls you must set exactly one of the members.
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
-
#managed_vpc_resource ⇒ Types::ManagedVpcResource
Configuration for connecting to a private resource using a managed VPC Lattice resource.
-
#self_managed_lattice_resource ⇒ Types::SelfManagedLatticeResource
Configuration for connecting to a private resource using a self-managed VPC Lattice resource configuration.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#managed_vpc_resource ⇒ Types::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_resource ⇒ Types::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 |
#unknown ⇒ Object
Returns the value of attribute unknown
13472 13473 13474 |
# File 'gems/aws-sdk-bedrockagentcorecontrol/lib/aws-sdk-bedrockagentcorecontrol/types.rb', line 13472 def unknown @unknown end |