Class: Aws::GuardDuty::Types::EksCluster
- Inherits:
-
Struct
- Object
- Struct
- Aws::GuardDuty::Types::EksCluster
- Defined in:
- gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb
Overview
Contains information about the Amazon EKS cluster involved in a GuardDuty finding, including cluster identification, status, and network configuration.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the Amazon EKS cluster involved in the finding.
-
#created_at ⇒ Time
The timestamp indicating when the Amazon EKS cluster was created, in UTC format.
-
#ec2_instance_uids ⇒ Array<String>
A list of unique identifiers for the Amazon EC2 instances that serve as worker nodes in the Amazon EKS cluster.
-
#status ⇒ String
The current status of the Amazon EKS cluster.
-
#vpc_id ⇒ String
The ID of the Amazon Virtual Private Cloud (Amazon VPC) associated with the Amazon EKS cluster.
Instance Attribute Details
#arn ⇒ String
The Amazon Resource Name (ARN) that uniquely identifies the Amazon EKS cluster involved in the finding.
3377 3378 3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3377 class EksCluster < Struct.new( :arn, :created_at, :status, :vpc_id, :ec2_instance_uids) SENSITIVE = [] include Aws::Structure end |
#created_at ⇒ Time
The timestamp indicating when the Amazon EKS cluster was created, in UTC format.
3377 3378 3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3377 class EksCluster < Struct.new( :arn, :created_at, :status, :vpc_id, :ec2_instance_uids) SENSITIVE = [] include Aws::Structure end |
#ec2_instance_uids ⇒ Array<String>
A list of unique identifiers for the Amazon EC2 instances that serve as worker nodes in the Amazon EKS cluster.
3377 3378 3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3377 class EksCluster < Struct.new( :arn, :created_at, :status, :vpc_id, :ec2_instance_uids) SENSITIVE = [] include Aws::Structure end |
#status ⇒ String
The current status of the Amazon EKS cluster.
3377 3378 3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3377 class EksCluster < Struct.new( :arn, :created_at, :status, :vpc_id, :ec2_instance_uids) SENSITIVE = [] include Aws::Structure end |
#vpc_id ⇒ String
The ID of the Amazon Virtual Private Cloud (Amazon VPC) associated with the Amazon EKS cluster.
3377 3378 3379 3380 3381 3382 3383 3384 3385 |
# File 'gems/aws-sdk-guardduty/lib/aws-sdk-guardduty/types.rb', line 3377 class EksCluster < Struct.new( :arn, :created_at, :status, :vpc_id, :ec2_instance_uids) SENSITIVE = [] include Aws::Structure end |