Show / Hide Table of Contents

Class FargateProfileArgs

Inheritance
System.Object
InputArgs
ResourceArgs
FargateProfileArgs
Inherited Members
ResourceArgs.Empty
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.Eks
Assembly: Pulumi.Aws.dll
Syntax
public sealed class FargateProfileArgs : ResourceArgs

Constructors

View Source

FargateProfileArgs()

Declaration
public FargateProfileArgs()

Properties

View Source

ClusterName

Name of the EKS Cluster.

Declaration
public Input<string> ClusterName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

FargateProfileName

Name of the EKS Fargate Profile.

Declaration
public Input<string> FargateProfileName { get; set; }
Property Value
Type Description
Input<System.String>
View Source

PodExecutionRoleArn

Amazon Resource Name (ARN) of the IAM Role that provides permissions for the EKS Fargate Profile.

Declaration
public Input<string> PodExecutionRoleArn { get; set; }
Property Value
Type Description
Input<System.String>
View Source

Selectors

Configuration block(s) for selecting Kubernetes Pods to execute with this EKS Fargate Profile. Detailed below.

Declaration
public InputList<FargateProfileSelectorArgs> Selectors { get; set; }
Property Value
Type Description
InputList<FargateProfileSelectorArgs>
View Source

SubnetIds

Identifiers of private EC2 Subnets to associate with the EKS Fargate Profile. These subnets must have the following resource tag: kubernetes.io/cluster/CLUSTER_NAME (where CLUSTER_NAME is replaced with the name of the EKS Cluster).

Declaration
public InputList<string> SubnetIds { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Tags

Key-value map of resource tags.

Declaration
public InputMap<object> Tags { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.