Interface StorageBucketAclConfig
-
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable,com.hashicorp.cdktf.TerraformMetaArguments
- All Known Implementing Classes:
StorageBucketAclConfig.Jsii$Proxy
@Generated(value="jsii-pacmak/1.102.0 (build e354887)", date="2024-08-31T03:59:22.829Z") @Stability(Stable) public interface StorageBucketAclConfig extends software.amazon.jsii.JsiiSerializable, com.hashicorp.cdktf.TerraformMetaArguments
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classStorageBucketAclConfig.BuilderA builder forStorageBucketAclConfigstatic classStorageBucketAclConfig.Jsii$ProxyAn implementation forStorageBucketAclConfig
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description static StorageBucketAclConfig.Builderbuilder()StringgetBucket()The name of the bucket it applies to.default StringgetDefaultAcl()Configure this ACL to be the default ACL.default StringgetId()Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/storage_bucket_acl#id StorageBucketAcl#id}.default StringgetPredefinedAcl()The canned GCS ACL to apply.default List<String>getRoleEntity()List of role/entity pairs in the form ROLE:entity.
-
-
-
Method Detail
-
getBucket
@Stability(Stable) @NotNull String getBucket()
The name of the bucket it applies to.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/storage_bucket_acl#bucket StorageBucketAcl#bucket}
-
getDefaultAcl
@Stability(Stable) @Nullable default String getDefaultAcl()
Configure this ACL to be the default ACL.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/storage_bucket_acl#default_acl StorageBucketAcl#default_acl}
-
getId
@Stability(Stable) @Nullable default String getId()
Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/storage_bucket_acl#id StorageBucketAcl#id}.Please be aware that the id field is automatically added to all resources in Terraform providers using a Terraform provider SDK version below 2. If you experience problems setting this value it might not be settable. Please take a look at the provider documentation to ensure it should be settable.
-
getPredefinedAcl
@Stability(Stable) @Nullable default String getPredefinedAcl()
The canned GCS ACL to apply. Must be set if role_entity is not.Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/storage_bucket_acl#predefined_acl StorageBucketAcl#predefined_acl}
-
getRoleEntity
@Stability(Stable) @Nullable default List<String> getRoleEntity()
List of role/entity pairs in the form ROLE:entity.See GCS Bucket ACL documentation for more details. Must be set if predefined_acl is not. Docs at Terraform Registry: {@link https://registry.terraform.io/providers/hashicorp/google/5.43.1/docs/resources/storage_bucket_acl#role_entity StorageBucketAcl#role_entity}
-
builder
@Stability(Stable) static StorageBucketAclConfig.Builder builder()
- Returns:
- a
StorageBucketAclConfig.BuilderofStorageBucketAclConfig
-
-