FargateProfileReference
- class aws_cdk.aws_eks.FargateProfileReference(*, cluster_name, fargate_profile_arn, fargate_profile_name)
Bases:
object
A reference to a FargateProfile resource.
- Parameters:
cluster_name (
str
) – The ClusterName of the FargateProfile resource.fargate_profile_arn (
str
) – The ARN of the FargateProfile resource.fargate_profile_name (
str
) – The FargateProfileName of the FargateProfile resource.
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_eks as eks fargate_profile_reference = eks.FargateProfileReference( cluster_name="clusterName", fargate_profile_arn="fargateProfileArn", fargate_profile_name="fargateProfileName" )
Attributes
- cluster_name
The ClusterName of the FargateProfile resource.
- fargate_profile_arn
The ARN of the FargateProfile resource.
- fargate_profile_name
The FargateProfileName of the FargateProfile resource.