AWS SDK Version 4 for .NET
API Reference

AWS services or capabilities described in AWS Documentation may vary by region/location. Click Getting Started with Amazon AWS to see specific differences applicable to the China (Beijing) Region.

Updates the properties of a program management account.

Note:

For .NET Core this operation is only available in asynchronous form. Please refer to UpdateProgramManagementAccountAsync.

Namespace: Amazon.PartnerCentralChannel
Assembly: AWSSDK.PartnerCentralChannel.dll
Version: 3.x.y.z

Syntax

C#
public abstract UpdateProgramManagementAccountResponse UpdateProgramManagementAccount(
         UpdateProgramManagementAccountRequest request
)

Parameters

request
Type: Amazon.PartnerCentralChannel.Model.UpdateProgramManagementAccountRequest

Container for the necessary parameters to execute the UpdateProgramManagementAccount service method.

Return Value


The response from the UpdateProgramManagementAccount service method, as returned by PartnerCentralChannel.

Exceptions

ExceptionCondition
AccessDeniedException The request was denied due to insufficient permissions.
ConflictException The request could not be completed due to a conflict with the current state of the resource.
InternalServerException An internal server error occurred while processing the request.
ResourceNotFoundException The specified resource was not found.
ThrottlingException The request was throttled due to too many requests being sent in a short period.
ValidationException The request failed validation due to invalid input parameters.

Examples

Example for UpdateProgramManagementAccount


var client = new AmazonPartnerCentralChannelClient();
var response = client.AcceptChannelHandshake(new AcceptChannelHandshakeRequest 
{
    Catalog = "AWS",
    Identifier = "ch-4fj3bd2o3vb91"
});

AcceptChannelHandshakeDetail channelHandshakeDetail = response.ChannelHandshakeDetail;

            

Version Information

.NET Framework:
Supported in: 4.7.2 and newer

See Also