interface FargateProfileReference
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Interfaces.EKS.FargateProfileReference |
Go | github.com/aws/aws-cdk-go/awscdk/v2/interfaces/awseks#FargateProfileReference |
Java | software.amazon.awscdk.interfaces.eks.FargateProfileReference |
Python | aws_cdk.interfaces.aws_eks.FargateProfileReference |
TypeScript | aws-cdk-lib » interfaces » aws_eks » FargateProfileReference |
A reference to a FargateProfile resource.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_eks as interfaces_aws_eks } from 'aws-cdk-lib/interfaces';
const fargateProfileReference: interfaces_aws_eks.FargateProfileReference = {
clusterName: 'clusterName',
fargateProfileArn: 'fargateProfileArn',
fargateProfileName: 'fargateProfileName',
};
Properties
| Name | Type | Description |
|---|---|---|
| cluster | string | The ClusterName of the FargateProfile resource. |
| fargate | string | The ARN of the FargateProfile resource. |
| fargate | string | The FargateProfileName of the FargateProfile resource. |
clusterName
Type:
string
The ClusterName of the FargateProfile resource.
fargateProfileArn
Type:
string
The ARN of the FargateProfile resource.
fargateProfileName
Type:
string
The FargateProfileName of the FargateProfile resource.

.NET
Go
Java
Python
TypeScript