You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: pdf/aspose-pdf-for-aws/_index.md
+58Lines changed: 58 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,6 +16,64 @@ Users can quickly begin utilizing the API through the intuitive Swagger UI, faci
16
16
17
17
Organizations looking to optimize their document processing can find real value in the pay-as-you-go model offered by Aspose.PDF for AWS. With no need for a initial payment to get started, you only pay for the resources you actually use to process. This flexibility makes it easier to scale your operations as demand fluctuates, ensuring that you’re not overpaying for unused capacity. By using [Aspose.PDF for AWS](https://aws.amazon.com/marketplace/pp/prodview-zc64pent6p6lo), your organization can efficiently manage document workflows, adjust quickly to changing needs.
18
18
19
+
## Aspose.PDF for AWS Trial
20
+
21
+
You can start using **Aspose.PDF for AWS** right away in **trial mode**.
22
+
Just works when you launch configured the container.
23
+
24
+
### What to expect in trial mode:
25
+
- Some advanced APIs and formats have evaluation watermark
26
+
- Document size is [limited](https://docs.aspose.com/pdf/net/licensing/#limitation-of-an-evaluation-version) (about **4 pages, 4 elements per page**).
27
+
- The container runs for **one hour at a time**. Want more time? Just restart the container.
28
+
29
+
Trial mode is perfect for exploring features and checking if the product fits your needs.
30
+
31
+
### Why Enable Billing?
32
+
33
+
- No evaluation watermark
34
+
- Process **unlimited pages**
35
+
- Access **advanced APIs and features**
36
+
- Unlock **all supported formats**
37
+
- Run containers continuously without trial limits
38
+
39
+
### If You See an Error on trial
40
+
41
+
Without the right permission, you may see an error like this:
42
+
43
+
```bash
44
+
arn:aws:sts::111111111:assumed-role/ecsInstanceRole/i-22222222 is not authorized to perform: aws-marketplace:MeterUsage
45
+
```
46
+
47
+
This simply means the IAM role of container doesn’t have the **MeterUsage** action to bill. Add the policy above, restart, and you’re good to go to full version.
48
+
49
+
## Billing
50
+
51
+
When you’re ready to move beyond trial, enable **metered billing**. This unlocks full document processing and all supported APIs.
52
+
53
+
By default, AWS roles don’t allow billing. You’ll need to give your container permission to call the AWS **MeterUsage API**.
54
+
55
+
### How to enable billing:
56
+
57
+
1. Open the [IAM Console](https://console.aws.amazon.com/iam/).
58
+
2. Find the IAM role used by your ECS/EKS instance (often called `ecsInstanceRole`).
59
+
3. Add this policy to the role (new policy or inline):
60
+
61
+
```json
62
+
{
63
+
"Version": "2012-10-17",
64
+
"Statement": [
65
+
{
66
+
"Effect": "Allow",
67
+
"Action": "aws-marketplace:MeterUsage",
68
+
"Resource": "*"
69
+
}
70
+
]
71
+
}
72
+
```
73
+
74
+
4. Save the role and restart your container.
75
+
5. Done — billing is active and your container is no longer limited to trial mode.
76
+
19
77
## Pricing
20
78
21
79
Our [pricing model](https://aws.amazon.com/marketplace/pp/prodview-zc64pent6p6lo#pdp-pricing) offers a competitive and flexible structure based on the number of files processed within the same [S3 bucket](https://aws.amazon.com/s3/) of the account. The pricing is divided into tiers to accommodate various usage levels:
0 commit comments