Package org.cdk8s.plus24.k8s
Interface SeLinuxOptions
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
SeLinuxOptions.Jsii$Proxy
@Generated(value="jsii-pacmak/1.75.0 (build 63bb957)", date="2023-02-20T02:42:02.318Z") @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 class
SeLinuxOptions.Builder
A builder forSeLinuxOptions
static class
SeLinuxOptions.Jsii$Proxy
An implementation forSeLinuxOptions
-
Method Summary
All Methods Static Methods Instance Methods Default Methods Modifier and Type Method Description static SeLinuxOptions.Builder
builder()
default String
getLevel()
Level is SELinux level label that applies to the container.default String
getRole()
Role is a SELinux role label that applies to the container.default String
getType()
Type is a SELinux type label that applies to the container.default String
getUser()
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.Builder
ofSeLinuxOptions
-
-