Class: Aws::Inspector2::Types::ClusterMetadata
- Inherits:
-
Struct
- Object
- Struct
- Aws::Inspector2::Types::ClusterMetadata
- Defined in:
- gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb
Overview
Note:
ClusterMetadata is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of ClusterMetadata corresponding to the set member.
The metadata for a cluster.
Direct Known Subclasses
Defined Under Namespace
Classes: AwsEcsMetadataDetails, AwsEksMetadataDetails, Unknown
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#aws_ecs_metadata_details ⇒ Types::AwsEcsMetadataDetails
The details for an Amazon ECS cluster in the cluster metadata.
-
#aws_eks_metadata_details ⇒ Types::AwsEksMetadataDetails
The details for an Amazon EKS cluster in the cluster metadata.
-
#unknown ⇒ Object
Returns the value of attribute unknown.
Instance Attribute Details
#aws_ecs_metadata_details ⇒ Types::AwsEcsMetadataDetails
The details for an Amazon ECS cluster in the cluster metadata.
1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1915 class ClusterMetadata < Struct.new( :aws_ecs_metadata_details, :aws_eks_metadata_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsEcsMetadataDetails < ClusterMetadata; end class AwsEksMetadataDetails < ClusterMetadata; end class Unknown < ClusterMetadata; end end |
#aws_eks_metadata_details ⇒ Types::AwsEksMetadataDetails
The details for an Amazon EKS cluster in the cluster metadata.
1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1915 class ClusterMetadata < Struct.new( :aws_ecs_metadata_details, :aws_eks_metadata_details, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class AwsEcsMetadataDetails < ClusterMetadata; end class AwsEksMetadataDetails < ClusterMetadata; end class Unknown < ClusterMetadata; end end |
#unknown ⇒ Object
Returns the value of attribute unknown
1915 1916 1917 |
# File 'gems/aws-sdk-inspector2/lib/aws-sdk-inspector2/types.rb', line 1915 def unknown @unknown end |