io.github.cdklabs.cdk.verified.permissions.PolicyAttributes Maven / Gradle / Ivy
Show all versions of cdk-verified-permissions Show documentation
package io.github.cdklabs.cdk.verified.permissions;
/**
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.103.1 (build bef2dea)", date = "2024-09-09T15:44:54.912Z")
@software.amazon.jsii.Jsii(module = io.github.cdklabs.cdk.verified.permissions.$Module.class, fqn = "@cdklabs/cdk-verified-permissions.PolicyAttributes")
@software.amazon.jsii.Jsii.Proxy(PolicyAttributes.Jsii$Proxy.class)
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public interface PolicyAttributes extends software.amazon.jsii.JsiiSerializable {
/**
* (experimental) The unique ID of the new or updated policy.
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@org.jetbrains.annotations.NotNull java.lang.String getPolicyId();
/**
* (experimental) The type of the policy.
*
* This is one of the following values: Static or TemplateLinked
*
* Default: - Static
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
default @org.jetbrains.annotations.Nullable io.github.cdklabs.cdk.verified.permissions.PolicyType getPolicyType() {
return null;
}
/**
* @return a {@link Builder} of {@link PolicyAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
static Builder builder() {
return new Builder();
}
/**
* A builder for {@link PolicyAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public static final class Builder implements software.amazon.jsii.Builder {
java.lang.String policyId;
io.github.cdklabs.cdk.verified.permissions.PolicyType policyType;
/**
* Sets the value of {@link PolicyAttributes#getPolicyId}
* @param policyId The unique ID of the new or updated policy. This parameter is required.
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder policyId(java.lang.String policyId) {
this.policyId = policyId;
return this;
}
/**
* Sets the value of {@link PolicyAttributes#getPolicyType}
* @param policyType The type of the policy.
* This is one of the following values: Static or TemplateLinked
* @return {@code this}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
public Builder policyType(io.github.cdklabs.cdk.verified.permissions.PolicyType policyType) {
this.policyType = policyType;
return this;
}
/**
* Builds the configured instance.
* @return a new instance of {@link PolicyAttributes}
* @throws NullPointerException if any required attribute was not provided
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@Override
public PolicyAttributes build() {
return new Jsii$Proxy(this);
}
}
/**
* An implementation for {@link PolicyAttributes}
*/
@software.amazon.jsii.Stability(software.amazon.jsii.Stability.Level.Experimental)
@software.amazon.jsii.Internal
final class Jsii$Proxy extends software.amazon.jsii.JsiiObject implements PolicyAttributes {
private final java.lang.String policyId;
private final io.github.cdklabs.cdk.verified.permissions.PolicyType policyType;
/**
* Constructor that initializes the object based on values retrieved from the JsiiObject.
* @param objRef Reference to the JSII managed object.
*/
protected Jsii$Proxy(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
this.policyId = software.amazon.jsii.Kernel.get(this, "policyId", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
this.policyType = software.amazon.jsii.Kernel.get(this, "policyType", software.amazon.jsii.NativeType.forClass(io.github.cdklabs.cdk.verified.permissions.PolicyType.class));
}
/**
* Constructor that initializes the object based on literal property values passed by the {@link Builder}.
*/
protected Jsii$Proxy(final Builder builder) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
this.policyId = java.util.Objects.requireNonNull(builder.policyId, "policyId is required");
this.policyType = builder.policyType;
}
@Override
public final java.lang.String getPolicyId() {
return this.policyId;
}
@Override
public final io.github.cdklabs.cdk.verified.permissions.PolicyType getPolicyType() {
return this.policyType;
}
@Override
@software.amazon.jsii.Internal
public com.fasterxml.jackson.databind.JsonNode $jsii$toJson() {
final com.fasterxml.jackson.databind.ObjectMapper om = software.amazon.jsii.JsiiObjectMapper.INSTANCE;
final com.fasterxml.jackson.databind.node.ObjectNode data = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
data.set("policyId", om.valueToTree(this.getPolicyId()));
if (this.getPolicyType() != null) {
data.set("policyType", om.valueToTree(this.getPolicyType()));
}
final com.fasterxml.jackson.databind.node.ObjectNode struct = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
struct.set("fqn", om.valueToTree("@cdklabs/cdk-verified-permissions.PolicyAttributes"));
struct.set("data", data);
final com.fasterxml.jackson.databind.node.ObjectNode obj = com.fasterxml.jackson.databind.node.JsonNodeFactory.instance.objectNode();
obj.set("$jsii.struct", struct);
return obj;
}
@Override
public final boolean equals(final Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
PolicyAttributes.Jsii$Proxy that = (PolicyAttributes.Jsii$Proxy) o;
if (!policyId.equals(that.policyId)) return false;
return this.policyType != null ? this.policyType.equals(that.policyType) : that.policyType == null;
}
@Override
public final int hashCode() {
int result = this.policyId.hashCode();
result = 31 * result + (this.policyType != null ? this.policyType.hashCode() : 0);
return result;
}
}
}