Interface AddPermissionRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder,Buildable,CopyableBuilder<AddPermissionRequest.Builder,AddPermissionRequest>,LambdaRequest.Builder,SdkBuilder<AddPermissionRequest.Builder,AddPermissionRequest>,SdkPojo,SdkRequest.Builder
- Enclosing class:
- AddPermissionRequest
@Mutable @NotThreadSafe public static interface AddPermissionRequest.Builder extends LambdaRequest.Builder, SdkPojo, CopyableBuilder<AddPermissionRequest.Builder,AddPermissionRequest>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AddPermissionRequest.Builderaction(String action)The action that the principal can use on the function.AddPermissionRequest.BuildereventSourceToken(String eventSourceToken)For Alexa Smart Home functions, a token that the invoker must supply.AddPermissionRequest.BuilderfunctionName(String functionName)The name or ARN of the Lambda function, version, or alias.AddPermissionRequest.BuilderfunctionUrlAuthType(String functionUrlAuthType)The type of authentication that your function URL uses.AddPermissionRequest.BuilderfunctionUrlAuthType(FunctionUrlAuthType functionUrlAuthType)The type of authentication that your function URL uses.AddPermissionRequest.BuilderoverrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)AddPermissionRequest.BuilderoverrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)AddPermissionRequest.Builderprincipal(String principal)The Amazon Web Services service, Amazon Web Services account, IAM user, or IAM role that invokes the function.AddPermissionRequest.BuilderprincipalOrgID(String principalOrgID)The identifier for your organization in Organizations.AddPermissionRequest.Builderqualifier(String qualifier)Specify a version or alias to add permissions to a published version of the function.AddPermissionRequest.BuilderrevisionId(String revisionId)Update the policy only if the revision ID matches the ID that's specified.AddPermissionRequest.BuildersourceAccount(String sourceAccount)For Amazon Web Services service, the ID of the Amazon Web Services account that owns the resource.AddPermissionRequest.BuildersourceArn(String sourceArn)For Amazon Web Services services, the ARN of the Amazon Web Services resource that invokes the function.AddPermissionRequest.BuilderstatementId(String statementId)A statement identifier that differentiates the statement from others in the same policy.-
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.services.lambda.model.LambdaRequest.Builder
build
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
functionName
AddPermissionRequest.Builder functionName(String functionName)
The name or ARN of the Lambda function, version, or alias.
Name formats
-
Function name –
my-function(name-only),my-function:v1(with alias). -
Function ARN –
arn:aws:lambda:us-west-2:123456789012:function:my-function. -
Partial ARN –
123456789012:function:my-function.
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
- Parameters:
functionName- The name or ARN of the Lambda function, version, or alias.Name formats
-
Function name –
my-function(name-only),my-function:v1(with alias). -
Function ARN –
arn:aws:lambda:us-west-2:123456789012:function:my-function. -
Partial ARN –
123456789012:function:my-function.
You can append a version number or alias to any of the formats. The length constraint applies only to the full ARN. If you specify only the function name, it is limited to 64 characters in length.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-
statementId
AddPermissionRequest.Builder statementId(String statementId)
A statement identifier that differentiates the statement from others in the same policy.
- Parameters:
statementId- A statement identifier that differentiates the statement from others in the same policy.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
action
AddPermissionRequest.Builder action(String action)
The action that the principal can use on the function. For example,
lambda:InvokeFunctionorlambda:GetFunction.- Parameters:
action- The action that the principal can use on the function. For example,lambda:InvokeFunctionorlambda:GetFunction.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
principal
AddPermissionRequest.Builder principal(String principal)
The Amazon Web Services service, Amazon Web Services account, IAM user, or IAM role that invokes the function. If you specify a service, use
SourceArnorSourceAccountto limit who can invoke the function through that service.- Parameters:
principal- The Amazon Web Services service, Amazon Web Services account, IAM user, or IAM role that invokes the function. If you specify a service, useSourceArnorSourceAccountto limit who can invoke the function through that service.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceArn
AddPermissionRequest.Builder sourceArn(String sourceArn)
For Amazon Web Services services, the ARN of the Amazon Web Services resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.
Note that Lambda configures the comparison using the
StringLikeoperator.- Parameters:
sourceArn- For Amazon Web Services services, the ARN of the Amazon Web Services resource that invokes the function. For example, an Amazon S3 bucket or Amazon SNS topic.Note that Lambda configures the comparison using the
StringLikeoperator.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
sourceAccount
AddPermissionRequest.Builder sourceAccount(String sourceAccount)
For Amazon Web Services service, the ID of the Amazon Web Services account that owns the resource. Use this together with
SourceArnto ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.- Parameters:
sourceAccount- For Amazon Web Services service, the ID of the Amazon Web Services account that owns the resource. Use this together withSourceArnto ensure that the specified account owns the resource. It is possible for an Amazon S3 bucket to be deleted by its owner and recreated by another account.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
eventSourceToken
AddPermissionRequest.Builder eventSourceToken(String eventSourceToken)
For Alexa Smart Home functions, a token that the invoker must supply.
- Parameters:
eventSourceToken- For Alexa Smart Home functions, a token that the invoker must supply.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
qualifier
AddPermissionRequest.Builder qualifier(String qualifier)
Specify a version or alias to add permissions to a published version of the function.
- Parameters:
qualifier- Specify a version or alias to add permissions to a published version of the function.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
revisionId
AddPermissionRequest.Builder revisionId(String revisionId)
Update the policy only if the revision ID matches the ID that's specified. Use this option to avoid modifying a policy that has changed since you last read it.
- Parameters:
revisionId- Update the policy only if the revision ID matches the ID that's specified. Use this option to avoid modifying a policy that has changed since you last read it.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
principalOrgID
AddPermissionRequest.Builder principalOrgID(String principalOrgID)
The identifier for your organization in Organizations. Use this to grant permissions to all the Amazon Web Services accounts under this organization.
- Parameters:
principalOrgID- The identifier for your organization in Organizations. Use this to grant permissions to all the Amazon Web Services accounts under this organization.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
functionUrlAuthType
AddPermissionRequest.Builder functionUrlAuthType(String functionUrlAuthType)
The type of authentication that your function URL uses. Set to
AWS_IAMif you want to restrict access to authenticated users only. Set toNONEif you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.- Parameters:
functionUrlAuthType- The type of authentication that your function URL uses. Set toAWS_IAMif you want to restrict access to authenticated users only. Set toNONEif you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionUrlAuthType,FunctionUrlAuthType
-
functionUrlAuthType
AddPermissionRequest.Builder functionUrlAuthType(FunctionUrlAuthType functionUrlAuthType)
The type of authentication that your function URL uses. Set to
AWS_IAMif you want to restrict access to authenticated users only. Set toNONEif you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.- Parameters:
functionUrlAuthType- The type of authentication that your function URL uses. Set toAWS_IAMif you want to restrict access to authenticated users only. Set toNONEif you want to bypass IAM authentication to create a public endpoint. For more information, see Security and auth model for Lambda function URLs.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
FunctionUrlAuthType,FunctionUrlAuthType
-
overrideConfiguration
AddPermissionRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
overrideConfiguration
AddPermissionRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfigurationin interfaceAwsRequest.Builder
-
-