com.aliyun.ros.cdk.oss.ObjectAcl Maven / Gradle / Ivy
Show all versions of ros-cdk-oss Show documentation
package com.aliyun.ros.cdk.oss;
/**
* This class encapsulates and extends the ROS resource type ALIYUN::OSS::ObjectAcl
, which is used to modify the access control list (ACL) of an Object Storage Service (OSS) object.
*/
@javax.annotation.Generated(value = "jsii-pacmak/1.85.0 (build 08ee592)", date = "2024-12-13T06:45:09.982Z")
@software.amazon.jsii.Jsii(module = com.aliyun.ros.cdk.oss.$Module.class, fqn = "@alicloud/ros-cdk-oss.ObjectAcl")
public class ObjectAcl extends com.aliyun.ros.cdk.core.Resource {
protected ObjectAcl(final software.amazon.jsii.JsiiObjectRef objRef) {
super(objRef);
}
protected ObjectAcl(final software.amazon.jsii.JsiiObject.InitializationMode initializationMode) {
super(initializationMode);
}
/**
* Param scope - scope in which this resource is defined Param id - scoped id of the resource Param props - resource properties.
*
* @param scope This parameter is required.
* @param id This parameter is required.
* @param props This parameter is required.
* @param enableResourcePropertyConstraint
*/
public ObjectAcl(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String id, final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.oss.ObjectAclProps props, final @org.jetbrains.annotations.Nullable java.lang.Boolean enableResourcePropertyConstraint) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(id, "id is required"), java.util.Objects.requireNonNull(props, "props is required"), enableResourcePropertyConstraint });
}
/**
* Param scope - scope in which this resource is defined Param id - scoped id of the resource Param props - resource properties.
*
* @param scope This parameter is required.
* @param id This parameter is required.
* @param props This parameter is required.
*/
public ObjectAcl(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.Construct scope, final @org.jetbrains.annotations.NotNull java.lang.String id, final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.oss.ObjectAclProps props) {
super(software.amazon.jsii.JsiiObject.InitializationMode.JSII);
software.amazon.jsii.JsiiEngine.getInstance().createNewObject(this, new Object[] { java.util.Objects.requireNonNull(scope, "scope is required"), java.util.Objects.requireNonNull(id, "id is required"), java.util.Objects.requireNonNull(props, "props is required") });
}
protected @org.jetbrains.annotations.NotNull java.lang.Boolean getEnableResourcePropertyConstraint() {
return software.amazon.jsii.Kernel.get(this, "enableResourcePropertyConstraint", software.amazon.jsii.NativeType.forClass(java.lang.Boolean.class));
}
protected void setEnableResourcePropertyConstraint(final @org.jetbrains.annotations.NotNull java.lang.Boolean value) {
software.amazon.jsii.Kernel.set(this, "enableResourcePropertyConstraint", java.util.Objects.requireNonNull(value, "enableResourcePropertyConstraint is required"));
}
protected @org.jetbrains.annotations.NotNull java.lang.String getId() {
return software.amazon.jsii.Kernel.get(this, "id", software.amazon.jsii.NativeType.forClass(java.lang.String.class));
}
protected void setId(final @org.jetbrains.annotations.NotNull java.lang.String value) {
software.amazon.jsii.Kernel.set(this, "id", java.util.Objects.requireNonNull(value, "id is required"));
}
protected @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.oss.ObjectAclProps getProps() {
return software.amazon.jsii.Kernel.get(this, "props", software.amazon.jsii.NativeType.forClass(com.aliyun.ros.cdk.oss.ObjectAclProps.class));
}
protected void setProps(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.oss.ObjectAclProps value) {
software.amazon.jsii.Kernel.set(this, "props", java.util.Objects.requireNonNull(value, "props is required"));
}
protected @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.Construct getScope() {
return software.amazon.jsii.Kernel.get(this, "scope", software.amazon.jsii.NativeType.forClass(com.aliyun.ros.cdk.core.Construct.class));
}
protected void setScope(final @org.jetbrains.annotations.NotNull com.aliyun.ros.cdk.core.Construct value) {
software.amazon.jsii.Kernel.set(this, "scope", java.util.Objects.requireNonNull(value, "scope is required"));
}
/**
* A fluent builder for {@link com.aliyun.ros.cdk.oss.ObjectAcl}.
*/
public static final class Builder implements software.amazon.jsii.Builder {
/**
* @return a new instance of {@link Builder}.
* @param scope This parameter is required.
* @param id This parameter is required.
* @param enableResourcePropertyConstraint
*/
public static Builder create(final com.aliyun.ros.cdk.core.Construct scope, final java.lang.String id, final java.lang.Boolean enableResourcePropertyConstraint) {
return new Builder(scope, id, enableResourcePropertyConstraint);
}
/**
* @return a new instance of {@link Builder}.
* @param scope This parameter is required.
* @param id This parameter is required.
*/
public static Builder create(final com.aliyun.ros.cdk.core.Construct scope, final java.lang.String id) {
return new Builder(scope, id, null);
}
private final com.aliyun.ros.cdk.core.Construct scope;
private final java.lang.String id;
private final java.lang.Boolean enableResourcePropertyConstraint;
private final com.aliyun.ros.cdk.oss.ObjectAclProps.Builder props;
private Builder(final com.aliyun.ros.cdk.core.Construct scope, final java.lang.String id, final java.lang.Boolean enableResourcePropertyConstraint) {
this.scope = scope;
this.id = id;
this.enableResourcePropertyConstraint = enableResourcePropertyConstraint;
this.props = new com.aliyun.ros.cdk.oss.ObjectAclProps.Builder();
}
/**
* Property bucket: Bucket name.
*
* @return {@code this}
* @param bucket Property bucket: Bucket name. This parameter is required.
*/
public Builder bucket(final java.lang.String bucket) {
this.props.bucket(bucket);
return this;
}
/**
* Property bucket: Bucket name.
*
* @return {@code this}
* @param bucket Property bucket: Bucket name. This parameter is required.
*/
public Builder bucket(final com.aliyun.ros.cdk.core.IResolvable bucket) {
this.props.bucket(bucket);
return this;
}
/**
* Property objectAcl: Object acl.
*
* @return {@code this}
* @param objectAcl Property objectAcl: Object acl. This parameter is required.
*/
public Builder objectAcl(final java.lang.String objectAcl) {
this.props.objectAcl(objectAcl);
return this;
}
/**
* Property objectAcl: Object acl.
*
* @return {@code this}
* @param objectAcl Property objectAcl: Object acl. This parameter is required.
*/
public Builder objectAcl(final com.aliyun.ros.cdk.core.IResolvable objectAcl) {
this.props.objectAcl(objectAcl);
return this;
}
/**
* Property objectKey: Object key.
*
* @return {@code this}
* @param objectKey Property objectKey: Object key. This parameter is required.
*/
public Builder objectKey(final java.lang.String objectKey) {
this.props.objectKey(objectKey);
return this;
}
/**
* Property objectKey: Object key.
*
* @return {@code this}
* @param objectKey Property objectKey: Object key. This parameter is required.
*/
public Builder objectKey(final com.aliyun.ros.cdk.core.IResolvable objectKey) {
this.props.objectKey(objectKey);
return this;
}
/**
* @return a newly built instance of {@link com.aliyun.ros.cdk.oss.ObjectAcl}.
*/
@Override
public com.aliyun.ros.cdk.oss.ObjectAcl build() {
return new com.aliyun.ros.cdk.oss.ObjectAcl(
this.scope,
this.id,
this.props.build(),
this.enableResourcePropertyConstraint
);
}
}
}