Interface ListProfilePermissionsResponse.Builder
-
- All Superinterfaces:
AwsResponse.Builder,Buildable,CopyableBuilder<ListProfilePermissionsResponse.Builder,ListProfilePermissionsResponse>,SdkBuilder<ListProfilePermissionsResponse.Builder,ListProfilePermissionsResponse>,SdkPojo,SdkResponse.Builder,SignerResponse.Builder
- Enclosing class:
- ListProfilePermissionsResponse
public static interface ListProfilePermissionsResponse.Builder extends SignerResponse.Builder, SdkPojo, CopyableBuilder<ListProfilePermissionsResponse.Builder,ListProfilePermissionsResponse>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ListProfilePermissionsResponse.BuildernextToken(String nextToken)String for specifying the next set of paginated results.ListProfilePermissionsResponse.Builderpermissions(Collection<Permission> permissions)List of permissions associated with the Signing Profile.ListProfilePermissionsResponse.Builderpermissions(Consumer<Permission.Builder>... permissions)List of permissions associated with the Signing Profile.ListProfilePermissionsResponse.Builderpermissions(Permission... permissions)List of permissions associated with the Signing Profile.ListProfilePermissionsResponse.BuilderpolicySizeBytes(Integer policySizeBytes)Total size of the policy associated with the Signing Profile in bytes.ListProfilePermissionsResponse.BuilderrevisionId(String revisionId)The identifier for the current revision of profile permissions.-
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
-
Methods inherited from interface software.amazon.awssdk.core.SdkResponse.Builder
sdkHttpResponse, sdkHttpResponse
-
Methods inherited from interface software.amazon.awssdk.services.signer.model.SignerResponse.Builder
build, responseMetadata, responseMetadata
-
-
-
-
Method Detail
-
revisionId
ListProfilePermissionsResponse.Builder revisionId(String revisionId)
The identifier for the current revision of profile permissions.
- Parameters:
revisionId- The identifier for the current revision of profile permissions.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
policySizeBytes
ListProfilePermissionsResponse.Builder policySizeBytes(Integer policySizeBytes)
Total size of the policy associated with the Signing Profile in bytes.
- Parameters:
policySizeBytes- Total size of the policy associated with the Signing Profile in bytes.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permissions
ListProfilePermissionsResponse.Builder permissions(Collection<Permission> permissions)
List of permissions associated with the Signing Profile.
- Parameters:
permissions- List of permissions associated with the Signing Profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permissions
ListProfilePermissionsResponse.Builder permissions(Permission... permissions)
List of permissions associated with the Signing Profile.
- Parameters:
permissions- List of permissions associated with the Signing Profile.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
permissions
ListProfilePermissionsResponse.Builder permissions(Consumer<Permission.Builder>... permissions)
List of permissions associated with the Signing Profile.
This is a convenience method that creates an instance of thePermission.Builderavoiding the need to create one manually viaPermission.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed to#permissions(List.) - Parameters:
permissions- a consumer that will call methods onPermission.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
#permissions(java.util.Collection)
-
nextToken
ListProfilePermissionsResponse.Builder nextToken(String nextToken)
String for specifying the next set of paginated results.
- Parameters:
nextToken- String for specifying the next set of paginated results.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-