The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::ServiceCatalog::UpdateProvisionedProductProperties - Arguments for method UpdateProvisionedProductProperties on Paws::ServiceCatalog

DESCRIPTION

This class represents the parameters used for calling the method UpdateProvisionedProductProperties on the AWS Service Catalog service. Use the attributes of this class as arguments to method UpdateProvisionedProductProperties.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to UpdateProvisionedProductProperties.

SYNOPSIS

    my $servicecatalog = Paws->service('ServiceCatalog');
    my $UpdateProvisionedProductPropertiesOutput =
      $servicecatalog->UpdateProvisionedProductProperties(
      IdempotencyToken             => 'MyIdempotencyToken',
      ProvisionedProductId         => 'MyId',
      ProvisionedProductProperties => {
        'OWNER' => 'MyPropertyValue'
        ,    # key: values: OWNER, LAUNCH_ROLEmin: 1, max: 128, value: max: 1024
      },
      AcceptLanguage => 'MyAcceptLanguage',    # OPTIONAL
      );

    # Results:
    my $ProvisionedProductId =
      $UpdateProvisionedProductPropertiesOutput->ProvisionedProductId;
    my $ProvisionedProductProperties =
      $UpdateProvisionedProductPropertiesOutput->ProvisionedProductProperties;
    my $RecordId = $UpdateProvisionedProductPropertiesOutput->RecordId;
    my $Status   = $UpdateProvisionedProductPropertiesOutput->Status;

# Returns a Paws::ServiceCatalog::UpdateProvisionedProductPropertiesOutput object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/servicecatalog/UpdateProvisionedProductProperties

ATTRIBUTES

AcceptLanguage => Str

The language code.

  • en - English (default)

  • jp - Japanese

  • zh - Chinese

REQUIRED IdempotencyToken => Str

The idempotency token that uniquely identifies the provisioning product update request.

REQUIRED ProvisionedProductId => Str

The identifier of the provisioned product.

REQUIRED ProvisionedProductProperties => Paws::ServiceCatalog::ProvisionedProductProperties

A map that contains the provisioned product properties to be updated.

The LAUNCH_ROLE key accepts role ARNs. This key allows an administrator to call UpdateProvisionedProductProperties to update the launch role that is associated with a provisioned product. This role is used when an end user calls a provisioning operation such as UpdateProvisionedProduct, TerminateProvisionedProduct, or ExecuteProvisionedProductServiceAction. Only a role ARN is valid. A user ARN is invalid.

The OWNER key accepts user ARNs and role ARNs. The owner is the user that has permission to see, update, terminate, and execute service actions in the provisioned product.

The administrator can change the owner of a provisioned product to another IAM user within the same account. Both end user owners and administrators can see ownership history of the provisioned product using the ListRecordHistory API. The new owner can describe all past records for the provisioned product using the DescribeRecord API. The previous owner can no longer use DescribeRecord, but can still see the product's history from when he was an owner using ListRecordHistory.

If a provisioned product ownership is assigned to an end user, they can see and perform any action through the API or Service Catalog console such as update, terminate, and execute service actions. If an end user provisions a product and the owner is updated to someone else, they will no longer be able to see or perform any actions through API or the Service Catalog console on that provisioned product.

SEE ALSO

This class forms part of Paws, documenting arguments for method UpdateProvisionedProductProperties in Paws::ServiceCatalog

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues