Interface UpdateApplicationRequest.Builder
-
- All Superinterfaces:
AwsRequest.Builder
,Buildable
,CopyableBuilder<UpdateApplicationRequest.Builder,UpdateApplicationRequest>
,SdkBuilder<UpdateApplicationRequest.Builder,UpdateApplicationRequest>
,SdkPojo
,SdkRequest.Builder
,SsoAdminRequest.Builder
- Enclosing class:
- UpdateApplicationRequest
public static interface UpdateApplicationRequest.Builder extends SsoAdminRequest.Builder, SdkPojo, CopyableBuilder<UpdateApplicationRequest.Builder,UpdateApplicationRequest>
-
-
Method Summary
-
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.ssoadmin.model.SsoAdminRequest.Builder
build
-
-
-
-
Method Detail
-
applicationArn
UpdateApplicationRequest.Builder applicationArn(String applicationArn)
Specifies the ARN of the application. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.
- Parameters:
applicationArn
- Specifies the ARN of the application. For more information about ARNs, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces in the Amazon Web Services General Reference.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
description
UpdateApplicationRequest.Builder description(String description)
The description of the .
- Parameters:
description
- The description of the .- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
name
UpdateApplicationRequest.Builder name(String name)
Specifies the updated name for the application.
- Parameters:
name
- Specifies the updated name for the application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
portalOptions
UpdateApplicationRequest.Builder portalOptions(UpdateApplicationPortalOptions portalOptions)
A structure that describes the options for the portal associated with an application.
- Parameters:
portalOptions
- A structure that describes the options for the portal associated with an application.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
portalOptions
default UpdateApplicationRequest.Builder portalOptions(Consumer<UpdateApplicationPortalOptions.Builder> portalOptions)
A structure that describes the options for the portal associated with an application.
This is a convenience method that creates an instance of theUpdateApplicationPortalOptions.Builder
avoiding the need to create one manually viaUpdateApplicationPortalOptions.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed toportalOptions(UpdateApplicationPortalOptions)
.- Parameters:
portalOptions
- a consumer that will call methods onUpdateApplicationPortalOptions.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
portalOptions(UpdateApplicationPortalOptions)
-
status
UpdateApplicationRequest.Builder status(String status)
Specifies whether the application is enabled or disabled.
- Parameters:
status
- Specifies whether the application is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationStatus
,ApplicationStatus
-
status
UpdateApplicationRequest.Builder status(ApplicationStatus status)
Specifies whether the application is enabled or disabled.
- Parameters:
status
- Specifies whether the application is enabled or disabled.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
ApplicationStatus
,ApplicationStatus
-
overrideConfiguration
UpdateApplicationRequest.Builder overrideConfiguration(AwsRequestOverrideConfiguration overrideConfiguration)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
overrideConfiguration
UpdateApplicationRequest.Builder overrideConfiguration(Consumer<AwsRequestOverrideConfiguration.Builder> builderConsumer)
- Specified by:
overrideConfiguration
in interfaceAwsRequest.Builder
-
-