awscli 1.35.16__py3-none-any.whl → 1.35.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of awscli might be problematic. Click here for more details.
- awscli/__init__.py +1 -1
- awscli/examples/pipes/create-pipe.rst +23 -0
- awscli/examples/pipes/delete-pipe.rst +19 -0
- awscli/examples/pipes/describe-pipe.rst +37 -0
- awscli/examples/pipes/list-pipes.rst +25 -0
- awscli/examples/pipes/list-tags-for-resource.rst +17 -0
- awscli/examples/pipes/start-pipe.rst +19 -0
- awscli/examples/pipes/stop-pipe.rst +19 -0
- awscli/examples/pipes/tag-resource.rst +9 -0
- awscli/examples/pipes/untag-resource.rst +9 -0
- awscli/examples/pipes/update-pipe.rst +22 -0
- {awscli-1.35.16.dist-info → awscli-1.35.18.dist-info}/METADATA +2 -2
- {awscli-1.35.16.dist-info → awscli-1.35.18.dist-info}/RECORD +21 -11
- {awscli-1.35.16.data → awscli-1.35.18.data}/scripts/aws +0 -0
- {awscli-1.35.16.data → awscli-1.35.18.data}/scripts/aws.cmd +0 -0
- {awscli-1.35.16.data → awscli-1.35.18.data}/scripts/aws_bash_completer +0 -0
- {awscli-1.35.16.data → awscli-1.35.18.data}/scripts/aws_completer +0 -0
- {awscli-1.35.16.data → awscli-1.35.18.data}/scripts/aws_zsh_completer.sh +0 -0
- {awscli-1.35.16.dist-info → awscli-1.35.18.dist-info}/LICENSE.txt +0 -0
- {awscli-1.35.16.dist-info → awscli-1.35.18.dist-info}/WHEEL +0 -0
- {awscli-1.35.16.dist-info → awscli-1.35.18.dist-info}/top_level.txt +0 -0
awscli/__init__.py
CHANGED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
**To Create a pipe**
|
|
2
|
+
|
|
3
|
+
The following ``create-pipe`` example creates a Pipe named ``Demo_Pipe`` with SQS as the source and CloudWatch Log Group as the target for the Pipe. ::
|
|
4
|
+
|
|
5
|
+
aws pipes create-pipe \
|
|
6
|
+
--name Demo_Pipe \
|
|
7
|
+
--desired-state RUNNING \
|
|
8
|
+
--role-arn arn:aws:iam::123456789012:role/service-role/Amazon_EventBridge_Pipe_Demo_Pipe_28b3aa4f \
|
|
9
|
+
--source arn:aws:sqs:us-east-1:123456789012:Demo_Queue \
|
|
10
|
+
--target arn:aws:logs:us-east-1:123456789012:log-group:/aws/pipes/Demo_LogGroup
|
|
11
|
+
|
|
12
|
+
Output::
|
|
13
|
+
|
|
14
|
+
{
|
|
15
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
16
|
+
"Name": "Demo_Pipe",
|
|
17
|
+
"DesiredState": "RUNNING",
|
|
18
|
+
"CurrentState": "CREATING",
|
|
19
|
+
"CreationTime": "2024-10-08T12:33:59-05:00",
|
|
20
|
+
"LastModifiedTime": "2024-10-08T12:33:59.684839-05:00"
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
**To delete an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``delete-pipe`` example deletes a Pipe named ``Demo_Pipe`` in the specified account. ::
|
|
4
|
+
|
|
5
|
+
aws pipes delete-pipe \
|
|
6
|
+
--name Demo_Pipe
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
12
|
+
"Name": "Demo_Pipe",
|
|
13
|
+
"DesiredState": "STOPPED",
|
|
14
|
+
"CurrentState": "DELETING",
|
|
15
|
+
"CreationTime": "2024-10-08T09:29:10-05:00",
|
|
16
|
+
"LastModifiedTime": "2024-10-08T11:57:22-05:00"
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
**To retrieve information about a Pipe**
|
|
2
|
+
|
|
3
|
+
The following ``describe-pipe`` example displays information about the Pipe ``Demo_Pipe`` in the specified account. ::
|
|
4
|
+
|
|
5
|
+
aws pipes describe-pipe \
|
|
6
|
+
--name Demo_Pipe
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
12
|
+
"Name": "Demo_Pipe",
|
|
13
|
+
"DesiredState": "RUNNING",
|
|
14
|
+
"CurrentState": "RUNNING",
|
|
15
|
+
"StateReason": "User initiated",
|
|
16
|
+
"Source": "arn:aws:sqs:us-east-1:123456789012:Demo_Queue",
|
|
17
|
+
"SourceParameters": {
|
|
18
|
+
"SqsQueueParameters": {
|
|
19
|
+
"BatchSize": 1
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"EnrichmentParameters": {},
|
|
23
|
+
"Target": "arn:aws:logs:us-east-1:123456789012:log-group:/aws/pipes/Demo_LogGroup",
|
|
24
|
+
"TargetParameters": {},
|
|
25
|
+
"RoleArn": "arn:aws:iam::123456789012:role/service-role/Amazon_EventBridge_Pipe_Demo_Pipe_28b3aa4f",
|
|
26
|
+
"Tags": {},
|
|
27
|
+
"CreationTime": "2024-10-08T09:29:10-05:00",
|
|
28
|
+
"LastModifiedTime": "2024-10-08T10:23:47-05:00",
|
|
29
|
+
"LogConfiguration": {
|
|
30
|
+
"CloudwatchLogsLogDestination": {
|
|
31
|
+
"LogGroupArn": "arn:aws:logs:us-east-1:123456789012:log-group:/aws/vendedlogs/pipes/Demo_Pipe"
|
|
32
|
+
},
|
|
33
|
+
"Level": "ERROR"
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
**To retrieve a list of Pipes**
|
|
2
|
+
|
|
3
|
+
The following ``list-pipes`` example shows all the pipes in the specified account. ::
|
|
4
|
+
|
|
5
|
+
aws pipes list-pipes
|
|
6
|
+
|
|
7
|
+
Output::
|
|
8
|
+
|
|
9
|
+
{
|
|
10
|
+
"Pipes": [
|
|
11
|
+
{
|
|
12
|
+
"Name": "Demo_Pipe",
|
|
13
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
14
|
+
"DesiredState": "RUNNING",
|
|
15
|
+
"CurrentState": "RUNNING",
|
|
16
|
+
"StateReason": "User initiated",
|
|
17
|
+
"CreationTime": "2024-10-08T09:29:10-05:00",
|
|
18
|
+
"LastModifiedTime": "2024-10-08T10:23:47-05:00",
|
|
19
|
+
"Source": "arn:aws:sqs:us-east-1:123456789012:Demo_Queue",
|
|
20
|
+
"Target": "arn:aws:logs:us-east-1:123456789012:log-group:/aws/pipes/Demo_LogGroup"
|
|
21
|
+
}
|
|
22
|
+
]
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
**To list the tags associated with an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``list-tags-for-resource`` example lists all the tags associated with a pipe named ``Demo_Pipe`` in the specified account. ::
|
|
4
|
+
|
|
5
|
+
aws pipes list-tags-for-resource \
|
|
6
|
+
--resource-arn arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"tags": {
|
|
12
|
+
"stack": "Production",
|
|
13
|
+
"team": "DevOps"
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
**To start an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``start-pipe`` example starts a Pipe named ``Demo_Pipe`` in the specified account. ::
|
|
4
|
+
|
|
5
|
+
aws pipes start-pipe \
|
|
6
|
+
--name Demo_Pipe
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
12
|
+
"Name": "Demo_Pipe",
|
|
13
|
+
"DesiredState": "RUNNING",
|
|
14
|
+
"CurrentState": "STARTING",
|
|
15
|
+
"CreationTime": "2024-10-08T09:29:10-05:00",
|
|
16
|
+
"LastModifiedTime": "2024-10-08T10:17:24-05:00"
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
For more information, see `Starting or stopping an Amazon EventBridge pipe <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-start-stop.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
**To stop an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``stop-pipe`` example stops a Pipe named ``Demo_Pipe`` in the specified account. ::
|
|
4
|
+
|
|
5
|
+
aws pipes stop-pipe \
|
|
6
|
+
--name Demo_Pipe
|
|
7
|
+
|
|
8
|
+
Output::
|
|
9
|
+
|
|
10
|
+
{
|
|
11
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
12
|
+
"Name": "Demo_Pipe",
|
|
13
|
+
"DesiredState": "STOPPED",
|
|
14
|
+
"CurrentState": "STOPPING",
|
|
15
|
+
"CreationTime": "2024-10-08T09:29:10-05:00",
|
|
16
|
+
"LastModifiedTime": "2024-10-08T09:29:49-05:00"
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
For more information, see `Starting or stopping an Amazon EventBridge pipe <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-start-stop.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
**To Tag an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``tag-resource`` example tags a Pipe named ``Demo_Pipe``. If the command succeeds, no output is returned. ::
|
|
4
|
+
|
|
5
|
+
aws pipes tag-resource \
|
|
6
|
+
--resource-arn arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe \
|
|
7
|
+
--tags stack=Production
|
|
8
|
+
|
|
9
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
**To remove a Tag from an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``untag-resource`` example removes a tag with the key ``stack`` from the Pipe named ``Demo_Pipe``. If the command succeeds, no output is returned. ::
|
|
4
|
+
|
|
5
|
+
aws pipes untag-resource \
|
|
6
|
+
--resource-arn arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe \
|
|
7
|
+
--tags stack
|
|
8
|
+
|
|
9
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
**To update an existing pipe**
|
|
2
|
+
|
|
3
|
+
The following ``update-pipe`` example updates the Pipe named ``Demo_Pipe`` by adding a CloudWatch Log configuration parameter, enure to update the execution role of the pipe so that it has the correct permissions for Log destination. ::
|
|
4
|
+
|
|
5
|
+
aws pipes update-pipe \
|
|
6
|
+
--name Demo_Pipe \
|
|
7
|
+
--desired-state RUNNING \
|
|
8
|
+
--log-configuration CloudwatchLogsLogDestination={LogGroupArn=arn:aws:logs:us-east-1:123456789012:log-group:/aws/vendedlogs/pipes/Demo_Pipe},Level=TRACE \
|
|
9
|
+
--role-arn arn:aws:iam::123456789012:role/service-role/Amazon_EventBridge_Pipe_Demo_Pipe_28b3aa4f
|
|
10
|
+
|
|
11
|
+
Output::
|
|
12
|
+
|
|
13
|
+
{
|
|
14
|
+
"Arn": "arn:aws:pipes:us-east-1:123456789012:pipe/Demo_Pipe",
|
|
15
|
+
"Name": "Demo_Pipe",
|
|
16
|
+
"DesiredState": "RUNNING",
|
|
17
|
+
"CurrentState": "UPDATING",
|
|
18
|
+
"CreationTime": "2024-10-08T09:29:10-05:00",
|
|
19
|
+
"LastModifiedTime": "2024-10-08T11:35:48-05:00"
|
|
20
|
+
}
|
|
21
|
+
|
|
22
|
+
For more information, see `Amazon EventBridge Pipes concepts <https://docs.aws.amazon.com/eventbridge/latest/userguide/pipes-concepts.html>`__ in the *Amazon EventBridge User Guide*.
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: awscli
|
|
3
|
-
Version: 1.35.
|
|
3
|
+
Version: 1.35.18
|
|
4
4
|
Summary: Universal Command Line Environment for AWS.
|
|
5
5
|
Home-page: http://aws.amazon.com/cli/
|
|
6
6
|
Author: Amazon Web Services
|
|
@@ -23,7 +23,7 @@ Classifier: Programming Language :: Python :: 3.11
|
|
|
23
23
|
Classifier: Programming Language :: Python :: 3.12
|
|
24
24
|
Requires-Python: >= 3.8
|
|
25
25
|
License-File: LICENSE.txt
|
|
26
|
-
Requires-Dist: botocore (==1.35.
|
|
26
|
+
Requires-Dist: botocore (==1.35.52)
|
|
27
27
|
Requires-Dist: docutils (<0.17,>=0.10)
|
|
28
28
|
Requires-Dist: s3transfer (<0.11.0,>=0.10.0)
|
|
29
29
|
Requires-Dist: PyYAML (<6.1,>=3.10)
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
awscli/__init__.py,sha256=
|
|
1
|
+
awscli/__init__.py,sha256=7Ls3ZCqH6_J09MIAB0jhWSxcbll1Zjc9UBCwTgBsouo,1534
|
|
2
2
|
awscli/__main__.py,sha256=iBjOg0tBxNlhzTi_tyc1G0SMGBvHMVvBJzX3JqYaooY,662
|
|
3
3
|
awscli/alias.py,sha256=Us9pvP8Zplbr1W4N3rE5gxicWLqlRG3l_9VPskxafgs,11313
|
|
4
4
|
awscli/argparser.py,sha256=3Pxx-vWytdV985Y6MIl9DeutUXyehIvACIs_PDby8GI,7650
|
|
@@ -4512,6 +4512,16 @@ awscli/examples/pinpoint/send-users-messages.rst,sha256=jBBW3CqVNNdLg7e1LWPioSJn
|
|
|
4512
4512
|
awscli/examples/pinpoint/tag-resource.rst,sha256=rcd39ErDEitGJEBZrJK2b5WYUQK_bp_CFRRkLcOzvZw,559
|
|
4513
4513
|
awscli/examples/pinpoint/untag-resource.rst,sha256=38yy52RTFn87zXbJUNSWV0PLkJld0OLemdNQ97Cv-zA,966
|
|
4514
4514
|
awscli/examples/pinpoint/update-sms-channel.rst,sha256=zMo78KZllgVabAHHvuOyt-sjwX1Lixd2qD_VYzJLBjI,1037
|
|
4515
|
+
awscli/examples/pipes/create-pipe.rst,sha256=KSzZYeAhROqDpuYUp_MZZ1oLlnri9ivOMgh2DHsBTzo,1017
|
|
4516
|
+
awscli/examples/pipes/delete-pipe.rst,sha256=TnpxY6v9D1V2kwGvPLkvc2Q4zYoeOIctgYLGGHjjSQA,673
|
|
4517
|
+
awscli/examples/pipes/describe-pipe.rst,sha256=mJZP3_XMPOY6JBaJq5Ou1RMjLqJxCsZHJYMjX9polRk,1470
|
|
4518
|
+
awscli/examples/pipes/list-pipes.rst,sha256=5davIbB4w8LrOxEfhjXHGx4HBcU52MTTHJ5IhH1LdW8,958
|
|
4519
|
+
awscli/examples/pipes/list-tags-for-resource.rst,sha256=4qccDjOiytj_DmeGyBIaUHJeJYwJDZOWpwmweyyaSAY,609
|
|
4520
|
+
awscli/examples/pipes/start-pipe.rst,sha256=TECYn2D3TttnIOaBos_M0Vr-5Aneo4cmEN1ANnaO87Q,685
|
|
4521
|
+
awscli/examples/pipes/stop-pipe.rst,sha256=6VJ-H1JcAVMD_dU53wuTnL4-8DzlfuM3cewZb14U3bI,681
|
|
4522
|
+
awscli/examples/pipes/tag-resource.rst,sha256=kkarYEjDj5_5-fkSRuCoTGRsGKA1O0zbofPXMV3T6Uc,474
|
|
4523
|
+
awscli/examples/pipes/untag-resource.rst,sha256=ebyMeMLUsVbnLpnXkdz7M9D-leVeuzGdSBs63Cyr010,520
|
|
4524
|
+
awscli/examples/pipes/update-pipe.rst,sha256=NCUTI4LMsZi6nShvwcBg1F6RRQJbmd0o0GDmiQTX6Bg,1114
|
|
4515
4525
|
awscli/examples/polly/delete-lexicon.rst,sha256=T3gSTcsGLKueCCgAlaTIYi0cb2DfKrnZEY1Lo5gAlyY,368
|
|
4516
4526
|
awscli/examples/polly/get-lexicon.rst,sha256=wYQiaW9sxa4Mib2Pco6cbCekV7h1YOBws2PBN6WbB1U,1315
|
|
4517
4527
|
awscli/examples/polly/get-speech-synthesis-task.rst,sha256=Z7-PixBHVpDKO3P21XV-FP-CwpiHZFiu5J4l73wjACI,913
|
|
@@ -5943,13 +5953,13 @@ awscli/topics/return-codes.rst,sha256=d9lpNFZwD75IiYcDEADQzu-4QiR8P28UPHkrNwPV5J
|
|
|
5943
5953
|
awscli/topics/s3-config.rst,sha256=FwwCczTylrSLwELuDQ-VA8sCI7ruwV9PEJJrqxjUeG0,11502
|
|
5944
5954
|
awscli/topics/s3-faq.rst,sha256=sS5jKHF_7X5eiGwpUg7aTqQt2zCRN-m_xXOcE0Bme0Q,1899
|
|
5945
5955
|
awscli/topics/topic-tags.json,sha256=6lUSrs3FKCZNRSQMnjcXNgWyRNGjZIeur1988a4IO5o,1577
|
|
5946
|
-
awscli-1.35.
|
|
5947
|
-
awscli-1.35.
|
|
5948
|
-
awscli-1.35.
|
|
5949
|
-
awscli-1.35.
|
|
5950
|
-
awscli-1.35.
|
|
5951
|
-
awscli-1.35.
|
|
5952
|
-
awscli-1.35.
|
|
5953
|
-
awscli-1.35.
|
|
5954
|
-
awscli-1.35.
|
|
5955
|
-
awscli-1.35.
|
|
5956
|
+
awscli-1.35.18.data/scripts/aws,sha256=r24FExgs0-JjILTQ3XZAqXBYE4SV6UMTtALkLGAj86g,805
|
|
5957
|
+
awscli-1.35.18.data/scripts/aws.cmd,sha256=s46DkC6LNgX63CIkzxxbPnFMJ6DRDBkvc88GnWa8Pvg,1432
|
|
5958
|
+
awscli-1.35.18.data/scripts/aws_bash_completer,sha256=RRpoEGJRagRzyHZKZZOwpltuVYv2EoiZsdXhmyWPZ54,204
|
|
5959
|
+
awscli-1.35.18.data/scripts/aws_completer,sha256=oC9kuMDlWE47dWk_4xjPde2PQvN-M0vND0J4YSLabVQ,1126
|
|
5960
|
+
awscli-1.35.18.data/scripts/aws_zsh_completer.sh,sha256=Qm6Z8ejNAMzpJjaT0pzqxbSDT2zxdmzVe5haRA7qLoc,1808
|
|
5961
|
+
awscli-1.35.18.dist-info/LICENSE.txt,sha256=o5XhFlwu0OK_BBrijlKCRa7dQAm36UrUB3gCV_cEr8E,549
|
|
5962
|
+
awscli-1.35.18.dist-info/METADATA,sha256=muJPWmjJM1krCrFqdv9Wy3PVYQb2Nqc-wsyensFQZ0o,11331
|
|
5963
|
+
awscli-1.35.18.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
5964
|
+
awscli-1.35.18.dist-info/top_level.txt,sha256=vt9wXFr1_nGYK6abhJgt6zY3fULe4JSZedm_5XOM9S0,7
|
|
5965
|
+
awscli-1.35.18.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|