Discuss this help topic in SecureBlackbox Forum

TElAWSS3DataStorageBucket.SetPaymentConfiguration

TElAWSS3DataStorageBucket     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Changes payment configuration for data bucket.

Declaration

[C#]
    void SetPaymentConfiguration(string PaymentConfig);
    void SetPaymentConfiguration(bool RequesterPays);

[VB.NET]
    Sub SetPaymentConfiguration(ByVal PaymentConfig As String)
    Sub SetPaymentConfiguration(ByVal RequesterPays As Boolean)

[Pascal]
    procedure SetPaymentConfiguration(const PaymentConfig : string);
    procedure SetPaymentConfiguration(RequesterPays : boolean);

[C++]
    void SetPaymentConfiguration(const std::string &PaymentConfig);
    void SetPaymentConfiguration(bool RequesterPays);

[PHP]
    void SetPaymentConfiguration(string $PaymentConfig)
    void SetPaymentConfiguration(bool $RequesterPays)

[Java]
    void setPaymentConfiguration(boolean RequesterPays);
    void setPaymentConfiguration(String PaymentConfig);

Parameters

  • PaymentConfig - specifies new payment configuration for the bucket
  • RequesterPays - specifies if RequesterPays should be enabled. Downloads from such buckets are paid by the requesters.

Description

    Use this method to specify the payment configuration for the data bucket.

See also:     GetPaymentConfiguration    

Discuss this help topic in SecureBlackbox Forum