Interface AccessRules.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<AccessRules.Builder,AccessRules>,SdkBuilder<AccessRules.Builder,AccessRules>,SdkPojo
- Enclosing class:
- AccessRules
public static interface AccessRules.Builder extends SdkPojo, CopyableBuilder<AccessRules.Builder,AccessRules>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AccessRules.BuilderallowPublicOverrides(Boolean allowPublicOverrides)A Boolean value that indicates whether the access control list (ACL) permissions that are applied to individual objects override thegetObjectoption that is currently specified.AccessRules.BuildergetObject(String getObject)Specifies the anonymous access to all objects in a bucket.AccessRules.BuildergetObject(AccessType getObject)Specifies the anonymous access to all objects in a bucket.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFields
-
-
-
-
Method Detail
-
getObject
AccessRules.Builder getObject(String getObject)
Specifies the anonymous access to all objects in a bucket.
The following options can be specified:
-
public- Sets all objects in the bucket to public (read-only), making them readable by anyone in the world.If the
getObjectvalue is set topublic, then all objects in the bucket default to public regardless of theallowPublicOverridesvalue. -
private- Sets all objects in the bucket to private, making them readable only by you or anyone you give access to.If the
getObjectvalue is set toprivate, and theallowPublicOverridesvalue is set totrue, then all objects in the bucket default to private unless they are configured with apublic-readACL. Individual objects with apublic-readACL are readable by anyone in the world.
- Parameters:
getObject- Specifies the anonymous access to all objects in a bucket.The following options can be specified:
-
public- Sets all objects in the bucket to public (read-only), making them readable by anyone in the world.If the
getObjectvalue is set topublic, then all objects in the bucket default to public regardless of theallowPublicOverridesvalue. -
private- Sets all objects in the bucket to private, making them readable only by you or anyone you give access to.If the
getObjectvalue is set toprivate, and theallowPublicOverridesvalue is set totrue, then all objects in the bucket default to private unless they are configured with apublic-readACL. Individual objects with apublic-readACL are readable by anyone in the world.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccessType,AccessType
-
-
getObject
AccessRules.Builder getObject(AccessType getObject)
Specifies the anonymous access to all objects in a bucket.
The following options can be specified:
-
public- Sets all objects in the bucket to public (read-only), making them readable by anyone in the world.If the
getObjectvalue is set topublic, then all objects in the bucket default to public regardless of theallowPublicOverridesvalue. -
private- Sets all objects in the bucket to private, making them readable only by you or anyone you give access to.If the
getObjectvalue is set toprivate, and theallowPublicOverridesvalue is set totrue, then all objects in the bucket default to private unless they are configured with apublic-readACL. Individual objects with apublic-readACL are readable by anyone in the world.
- Parameters:
getObject- Specifies the anonymous access to all objects in a bucket.The following options can be specified:
-
public- Sets all objects in the bucket to public (read-only), making them readable by anyone in the world.If the
getObjectvalue is set topublic, then all objects in the bucket default to public regardless of theallowPublicOverridesvalue. -
private- Sets all objects in the bucket to private, making them readable only by you or anyone you give access to.If the
getObjectvalue is set toprivate, and theallowPublicOverridesvalue is set totrue, then all objects in the bucket default to private unless they are configured with apublic-readACL. Individual objects with apublic-readACL are readable by anyone in the world.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
AccessType,AccessType
-
-
allowPublicOverrides
AccessRules.Builder allowPublicOverrides(Boolean allowPublicOverrides)
A Boolean value that indicates whether the access control list (ACL) permissions that are applied to individual objects override the
getObjectoption that is currently specified.When this is true, you can use the PutObjectAcl Amazon S3 API action to set individual objects to public (read-only) using the
public-readACL, or to private using theprivateACL.- Parameters:
allowPublicOverrides- A Boolean value that indicates whether the access control list (ACL) permissions that are applied to individual objects override thegetObjectoption that is currently specified.When this is true, you can use the PutObjectAcl Amazon S3 API action to set individual objects to public (read-only) using the
public-readACL, or to private using theprivateACL.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-