Package org.cdk8s.plus25.k8s
Interface SeLinuxOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SeLinuxOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.88.0 (build eaabd08)", date="2023-09-11T06:17:58.814Z") @Stability(Stable) public interface SeLinuxOptions extends software.amazon.jsii.JsiiSerializable
SELinuxOptions are the labels to be applied to the container.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classSeLinuxOptions.BuilderA builder forSeLinuxOptionsstatic classSeLinuxOptions.Jsii$ProxyAn implementation forSeLinuxOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static SeLinuxOptions.Builderbuilder()default StringgetLevel()Level is SELinux level label that applies to the container.default StringgetRole()Role is a SELinux role label that applies to the container.default StringgetType()Type is a SELinux type label that applies to the container.default StringgetUser()User is a SELinux user label that applies to the container.
-
-
-
Method Detail
-
getLevel
@Stability(Stable) @Nullable default String getLevel()
Level is SELinux level label that applies to the container.
-
getRole
@Stability(Stable) @Nullable default String getRole()
Role is a SELinux role label that applies to the container.
-
getType
@Stability(Stable) @Nullable default String getType()
Type is a SELinux type label that applies to the container.
-
getUser
@Stability(Stable) @Nullable default String getUser()
User is a SELinux user label that applies to the container.
-
builder
@Stability(Stable) static SeLinuxOptions.Builder builder()
- Returns:
- a
SeLinuxOptions.BuilderofSeLinuxOptions
-
-