Interface Action.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<Action.Builder,Action>,SdkBuilder<Action.Builder,Action>,SdkPojo
- Enclosing class:
- Action
public static interface Action.Builder extends SdkPojo, CopyableBuilder<Action.Builder,Action>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Action.Builderdescription(String description)Information about the action.Action.Buildername(String name)The action name.Action.BuilderroleArn(String roleArn)An Amazon Resource Name (ARN) for an Identity and Access Management assume role.Action.Builderuri(String uri)The extension URI associated to the action point in the extension definition.-
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
-
name
Action.Builder name(String name)
The action name.
- Parameters:
name- The action name.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
Action.Builder description(String description)
Information about the action.
- Parameters:
description- Information about the action.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
uri
Action.Builder uri(String uri)
The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.
- Parameters:
uri- The extension URI associated to the action point in the extension definition. The URI can be an Amazon Resource Name (ARN) for one of the following: an Lambda function, an Amazon Simple Queue Service queue, an Amazon Simple Notification Service topic, or the Amazon EventBridge default event bus.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
roleArn
Action.Builder roleArn(String roleArn)
An Amazon Resource Name (ARN) for an Identity and Access Management assume role.
- Parameters:
roleArn- An Amazon Resource Name (ARN) for an Identity and Access Management assume role.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-