package awseks import ( _init_ "github.com/aws/aws-cdk-go/awscdk/v2/jsii" _jsii_ "github.com/aws/jsii-runtime-go/runtime" "github.com/aws/aws-cdk-go/awscdk/v2" "github.com/aws/aws-cdk-go/awscdk/v2/awseks/internal" "github.com/aws/aws-cdk-go/awscdk/v2/awsiam" "github.com/aws/constructs-go/constructs/v10" ) // Fargate profiles allows an administrator to declare which pods run on Fargate. // // This declaration is done through the profile’s selectors. Each // profile can have up to five selectors that contain a namespace and optional // labels. You must define a namespace for every selector. The label field // consists of multiple optional key-value pairs. Pods that match a selector (by // matching a namespace for the selector and all of the labels specified in the // selector) are scheduled on Fargate. If a namespace selector is defined // without any labels, Amazon EKS will attempt to schedule all pods that run in // that namespace onto Fargate using the profile. If a to-be-scheduled pod // matches any of the selectors in the Fargate profile, then that pod is // scheduled on Fargate. // // If a pod matches multiple Fargate profiles, Amazon EKS picks one of the // matches at random. In this case, you can specify which profile a pod should // use by adding the following Kubernetes label to the pod specification: // eks.amazonaws.com/fargate-profile: profile_name. However, the pod must still // match a selector in that profile in order to be scheduled onto Fargate. // // Example: // var cluster cluster // // eks.NewFargateProfile(this, jsii.String("MyProfile"), &FargateProfileProps{ // Cluster: Cluster, // Selectors: []selector{ // &selector{ // Namespace: jsii.String("default"), // }, // }, // }) // type FargateProfile interface { constructs.Construct awscdk.ITaggable // The full Amazon Resource Name (ARN) of the Fargate profile. FargateProfileArn() *string // The name of the Fargate profile. FargateProfileName() *string // The tree node. Node() constructs.Node // The pod execution role to use for pods that match the selectors in the Fargate profile. // // The pod execution role allows Fargate infrastructure to // register with your cluster as a node, and it provides read access to Amazon // ECR image repositories. PodExecutionRole() awsiam.IRole // Resource tags. Tags() awscdk.TagManager // Returns a string representation of this construct. ToString() *string } // The jsii proxy struct for FargateProfile type jsiiProxy_FargateProfile struct { internal.Type__constructsConstruct internal.Type__awscdkITaggable } func (j *jsiiProxy_FargateProfile) FargateProfileArn() *string { var returns *string _jsii_.Get( j, "fargateProfileArn", &returns, ) return returns } func (j *jsiiProxy_FargateProfile) FargateProfileName() *string { var returns *string _jsii_.Get( j, "fargateProfileName", &returns, ) return returns } func (j *jsiiProxy_FargateProfile) Node() constructs.Node { var returns constructs.Node _jsii_.Get( j, "node", &returns, ) return returns } func (j *jsiiProxy_FargateProfile) PodExecutionRole() awsiam.IRole { var returns awsiam.IRole _jsii_.Get( j, "podExecutionRole", &returns, ) return returns } func (j *jsiiProxy_FargateProfile) Tags() awscdk.TagManager { var returns awscdk.TagManager _jsii_.Get( j, "tags", &returns, ) return returns } func NewFargateProfile(scope constructs.Construct, id *string, props *FargateProfileProps) FargateProfile { _init_.Initialize() if err := validateNewFargateProfileParameters(scope, id, props); err != nil { panic(err) } j := jsiiProxy_FargateProfile{} _jsii_.Create( "aws-cdk-lib.aws_eks.FargateProfile", []interface{}{scope, id, props}, &j, ) return &j } func NewFargateProfile_Override(f FargateProfile, scope constructs.Construct, id *string, props *FargateProfileProps) { _init_.Initialize() _jsii_.Create( "aws-cdk-lib.aws_eks.FargateProfile", []interface{}{scope, id, props}, f, ) } // Checks if `x` is a construct. // // Use this method instead of `instanceof` to properly detect `Construct` // instances, even when the construct library is symlinked. // // Explanation: in JavaScript, multiple copies of the `constructs` library on // disk are seen as independent, completely different libraries. As a // consequence, the class `Construct` in each copy of the `constructs` library // is seen as a different class, and an instance of one class will not test as // `instanceof` the other class. `npm install` will not create installations // like this, but users may manually symlink construct libraries together or // use a monorepo tool: in those cases, multiple copies of the `constructs` // library can be accidentally installed, and `instanceof` will behave // unpredictably. It is safest to avoid using `instanceof`, and using // this type-testing method instead. // // Returns: true if `x` is an object created from a class which extends `Construct`. func FargateProfile_IsConstruct(x interface{}) *bool { _init_.Initialize() if err := validateFargateProfile_IsConstructParameters(x); err != nil { panic(err) } var returns *bool _jsii_.StaticInvoke( "aws-cdk-lib.aws_eks.FargateProfile", "isConstruct", []interface{}{x}, &returns, ) return returns } func (f *jsiiProxy_FargateProfile) ToString() *string { var returns *string _jsii_.Invoke( f, "toString", nil, // no parameters &returns, ) return returns }