Interface Application.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Application.Builder,Application>,SdkBuilder<Application.Builder,Application>,SdkPojo
- Enclosing class:
- Application
public static interface Application.Builder extends SdkPojo, CopyableBuilder<Application.Builder,Application>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Application.BuilderapplicationPermissions(String... applicationPermissions)The permissions that the agent is granted on the application.Application.BuilderapplicationPermissions(Collection<String> applicationPermissions)The permissions that the agent is granted on the application.Application.Buildernamespace(String namespace)Namespace of the application that you want to give access to.-
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
-
namespace
Application.Builder namespace(String namespace)
Namespace of the application that you want to give access to.
- Parameters:
namespace- Namespace of the application that you want to give access to.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationPermissions
Application.Builder applicationPermissions(Collection<String> applicationPermissions)
The permissions that the agent is granted on the application. Only the
ACCESSpermission is supported.- Parameters:
applicationPermissions- The permissions that the agent is granted on the application. Only theACCESSpermission is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
applicationPermissions
Application.Builder applicationPermissions(String... applicationPermissions)
The permissions that the agent is granted on the application. Only the
ACCESSpermission is supported.- Parameters:
applicationPermissions- The permissions that the agent is granted on the application. Only theACCESSpermission is supported.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-