You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Gets and sets the property DisableSessionTags.
127
+
/// <para>
128
+
/// Disable the automatic sessions tags that are appended by EKS Pod Identity.
129
+
/// </para>
130
+
///
131
+
/// <para>
132
+
/// EKS Pod Identity adds a pre-defined set of session tags when it assumes the role.
133
+
/// You can use these tags to author a single role that can work across resources by allowing
134
+
/// access to Amazon Web Services resources based on matching tags. By default, EKS Pod
135
+
/// Identity attaches six tags, including tags for cluster name, namespace, and service
136
+
/// account name. For the list of tags added by EKS Pod Identity, see <a href="https://docs.aws.amazon.com/eks/latest/userguide/pod-id-abac.html#pod-id-abac-tags">List
137
+
/// of session tags added by EKS Pod Identity</a> in the <i>Amazon EKS User Guide</i>.
138
+
/// </para>
139
+
///
140
+
/// <para>
141
+
/// Amazon Web Services compresses inline session policies, managed policy ARNs, and session
142
+
/// tags into a packed binary format that has a separate limit. If you receive a <c>PackedPolicyTooLarge</c>
143
+
/// error indicating the packed binary format has exceeded the size limit, you can attempt
144
+
/// to reduce the size by disabling the session tags added by EKS Pod Identity.
145
+
/// </para>
146
+
/// </summary>
147
+
publicbool?DisableSessionTags
148
+
{
149
+
get{returnthis._disableSessionTags;}
150
+
set{this._disableSessionTags=value;}
151
+
}
152
+
153
+
// Check to see if DisableSessionTags property is set
154
+
internalboolIsSetDisableSessionTags()
155
+
{
156
+
returnthis._disableSessionTags.HasValue;
157
+
}
158
+
105
159
/// <summary>
106
160
/// Gets and sets the property Namespace.
107
161
/// <para>
108
-
/// The name of the Kubernetes namespace inside the cluster to create the association
109
-
/// in. The service account and the pods that use the service account must be in this
110
-
/// namespace.
162
+
/// The name of the Kubernetes namespace inside the cluster to create the EKS Pod Identity
163
+
/// association in. The service account and the Pods that use the service account must
0 commit comments