Interface RemovePermissionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<RemovePermissionRequest.Builder,RemovePermissionRequest>
,SdkBuilder<RemovePermissionRequest.Builder,RemovePermissionRequest>
,SdkPojo
,SdkRequest.Builder
,SqsRequest.Builder
- Enclosing class:
- RemovePermissionRequest
public static interface RemovePermissionRequest.Builder extends SqsRequest.Builder, SdkPojo, CopyableBuilder<RemovePermissionRequest.Builder,RemovePermissionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RemovePermissionRequest.Builder
label(String label)
The identification of the permission to remove.RemovePermissionRequest.Builder
overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
RemovePermissionRequest.Builder
overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
RemovePermissionRequest.Builder
queueUrl(String queueUrl)
The URL of the Amazon SQS queue from which permissions are removed.-
Methods inherited from interface software.amazon.awssdk.awscore.AwsRequest.Builder
overrideConfiguration
-
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.services.sqs.model.SqsRequest.Builder
build
-
-
-
-
Method Detail
-
queueUrl
RemovePermissionRequest.Builder queueUrl(String queueUrl)
The URL of the Amazon SQS queue from which permissions are removed.
Queue URLs and names are case-sensitive.
- Parameters:
queueUrl
- The URL of the Amazon SQS queue from which permissions are removed.Queue URLs and names are case-sensitive.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
label
RemovePermissionRequest.Builder label(String label)
The identification of the permission to remove. This is the label added using the
AddPermission
action.- Parameters:
label
- The identification of the permission to remove. This is the label added using theAddPermission
action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
overrideConfiguration
RemovePermissionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
RemovePermissionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-