Class: Aws::RTBFabric::Types::ManagedEndpointConfiguration

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

Overview

Note:

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

Note:

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

Describes the configuration of a managed endpoint.

Direct Known Subclasses

AutoScalingGroups, EksEndpoints, Unknown

Defined Under Namespace

Classes: AutoScalingGroups, EksEndpoints, Unknown

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#auto_scaling_groupsTypes::AutoScalingGroupsConfiguration

Describes the configuration of an auto scaling group.



1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 1549

class ManagedEndpointConfiguration < Struct.new(
  :auto_scaling_groups,
  :eks_endpoints,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AutoScalingGroups < ManagedEndpointConfiguration; end
  class EksEndpoints < ManagedEndpointConfiguration; end
  class Unknown < ManagedEndpointConfiguration; end
end

#eks_endpointsTypes::EksEndpointsConfiguration

Describes the configuration of an Amazon Elastic Kubernetes Service endpoint.



1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 1549

class ManagedEndpointConfiguration < Struct.new(
  :auto_scaling_groups,
  :eks_endpoints,
  :unknown)
  SENSITIVE = []
  include Aws::Structure
  include Aws::Structure::Union

  class AutoScalingGroups < ManagedEndpointConfiguration; end
  class EksEndpoints < ManagedEndpointConfiguration; end
  class Unknown < ManagedEndpointConfiguration; end
end

#unknownObject

Returns the value of attribute unknown

Returns:

  • (Object)

    the current value of unknown



1549
1550
1551
# File 'gems/aws-sdk-rtbfabric/lib/aws-sdk-rtbfabric/types.rb', line 1549

def unknown
  @unknown
end