Interface ResourceDownloadOwnerSetting.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<ResourceDownloadOwnerSetting.Builder,ResourceDownloadOwnerSetting>,SdkBuilder<ResourceDownloadOwnerSetting.Builder,ResourceDownloadOwnerSetting>,SdkPojo
- Enclosing class:
- ResourceDownloadOwnerSetting
public static interface ResourceDownloadOwnerSetting.Builder extends SdkPojo, CopyableBuilder<ResourceDownloadOwnerSetting.Builder,ResourceDownloadOwnerSetting>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ResourceDownloadOwnerSetting.BuildergroupOwner(String groupOwner)The group owner of the resource.ResourceDownloadOwnerSetting.BuildergroupPermission(String groupPermission)The permissions that the group owner has to the resource.ResourceDownloadOwnerSetting.BuildergroupPermission(Permission groupPermission)The permissions that the group owner has to the resource.-
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
-
groupOwner
ResourceDownloadOwnerSetting.Builder groupOwner(String groupOwner)
The group owner of the resource. This is the name of an existing Linux OS group on the system or a GID. The group's permissions are added to the Lambda process.- Parameters:
groupOwner- The group owner of the resource. This is the name of an existing Linux OS group on the system or a GID. The group's permissions are added to the Lambda process.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
groupPermission
ResourceDownloadOwnerSetting.Builder groupPermission(String groupPermission)
The permissions that the group owner has to the resource. Valid values are ''rw'' (read/write) or ''ro'' (read-only).- Parameters:
groupPermission- The permissions that the group owner has to the resource. Valid values are ''rw'' (read/write) or ''ro'' (read-only).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Permission,Permission
-
groupPermission
ResourceDownloadOwnerSetting.Builder groupPermission(Permission groupPermission)
The permissions that the group owner has to the resource. Valid values are ''rw'' (read/write) or ''ro'' (read-only).- Parameters:
groupPermission- The permissions that the group owner has to the resource. Valid values are ''rw'' (read/write) or ''ro'' (read-only).- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
Permission,Permission
-
-