Skip to content

Commit ab2238d

Browse files
Merge branch 'release-1.45.39'
* release-1.45.39: Bumping version to 1.45.39 Update changelog based on model updates Merge pull request #9957 from eodeyemi14/eodeyemi14/servicecatalog-cli-docs
2 parents 7c1a783 + 3160f27 commit ab2238d

21 files changed

Lines changed: 525 additions & 4 deletions

.changes/1.45.39.json

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
[
2+
{
3+
"category": "``artifact``",
4+
"description": "Add support for Assurance Assistant APIs for managing compliance inquiries along with tagging features.",
5+
"type": "api-change"
6+
},
7+
{
8+
"category": "``cloud9``",
9+
"description": "Since Amazon Linux 2 (AL2) will reach its end-of-life (EOL) and stop receiving security updates on June 30, 2026, Cloud9 will remove AL2 from AMI options in public API create-environment-ec2.",
10+
"type": "api-change"
11+
},
12+
{
13+
"category": "``connect``",
14+
"description": "Adds a new Amazon Connect Service API, SendOutboundWebNotification, that delivers web notifications to end-customer chat widget sessions. Callable only by the Amazon Connect Outbound Campaigns service principal.",
15+
"type": "api-change"
16+
},
17+
{
18+
"category": "``ec2``",
19+
"description": "Use declarative policies to enable VPC Encryption Controls across your organization or select accounts. Added AMD SEV-SNP support for EC2 Dedicated Hosts. Managed resource visibility settings control whether AWS-provisioned resources in your account appear in console views and API list operations.",
20+
"type": "api-change"
21+
},
22+
{
23+
"category": "``gameliftstreams``",
24+
"description": "Added CreateStreamSessionAdminShell API operation to enable customers to establish secure terminal connections to the live runtime environment of streaming sessions for troubleshooting purposes.",
25+
"type": "api-change"
26+
},
27+
{
28+
"category": "``mediaconvert``",
29+
"description": "Adds support for integer-second duration normalization and the option to disable explicit weighted prediction.",
30+
"type": "api-change"
31+
},
32+
{
33+
"category": "``meteringmarketplace``",
34+
"description": "The usage reporting window for the BatchMeterUsage API has been extended from 6 hours to 24 hours. Sellers can now submit usage records for up to 24 hours after a metered event occurs.",
35+
"type": "api-change"
36+
},
37+
{
38+
"category": "``opensearch``",
39+
"description": "To create a Mustang domain via the AWS CLI, you must pass EngineMode OPTIMIZED (along with UseCase OBSERVABILITY or MIXED) without it, the domain defaults to a regular (GENERAL) domain. Also this release includes Insights Feedback API which user can use to provide feedback for Insight API.",
40+
"type": "api-change"
41+
},
42+
{
43+
"category": "``quicksight``",
44+
"description": "Adding support for FileSource PhysicalTables. This adds support for datasets with file sources.",
45+
"type": "api-change"
46+
}
47+
]

CHANGELOG.rst

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22
CHANGELOG
33
=========
44

5+
1.45.39
6+
=======
7+
8+
* api-change:``artifact``: Add support for Assurance Assistant APIs for managing compliance inquiries along with tagging features.
9+
* api-change:``cloud9``: Since Amazon Linux 2 (AL2) will reach its end-of-life (EOL) and stop receiving security updates on June 30, 2026, Cloud9 will remove AL2 from AMI options in public API create-environment-ec2.
10+
* api-change:``connect``: Adds a new Amazon Connect Service API, SendOutboundWebNotification, that delivers web notifications to end-customer chat widget sessions. Callable only by the Amazon Connect Outbound Campaigns service principal.
11+
* api-change:``ec2``: Use declarative policies to enable VPC Encryption Controls across your organization or select accounts. Added AMD SEV-SNP support for EC2 Dedicated Hosts. Managed resource visibility settings control whether AWS-provisioned resources in your account appear in console views and API list operations.
12+
* api-change:``gameliftstreams``: Added CreateStreamSessionAdminShell API operation to enable customers to establish secure terminal connections to the live runtime environment of streaming sessions for troubleshooting purposes.
13+
* api-change:``mediaconvert``: Adds support for integer-second duration normalization and the option to disable explicit weighted prediction.
14+
* api-change:``meteringmarketplace``: The usage reporting window for the BatchMeterUsage API has been extended from 6 hours to 24 hours. Sellers can now submit usage records for up to 24 hours after a metered event occurs.
15+
* api-change:``opensearch``: To create a Mustang domain via the AWS CLI, you must pass EngineMode OPTIMIZED (along with UseCase OBSERVABILITY or MIXED) without it, the domain defaults to a regular (GENERAL) domain. Also this release includes Insights Feedback API which user can use to provide feedback for Insight API.
16+
* api-change:``quicksight``: Adding support for FileSource PhysicalTables. This adds support for datasets with file sources.
17+
18+
519
1.45.38
620
=======
721

awscli/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import os
2020

21-
__version__ = '1.45.38'
21+
__version__ = '1.45.39'
2222

2323
#
2424
# Get our data path to be added to botocore's search path
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
**To create a constraints**
2+
3+
The following ``create-constraint`` example creates a constraint. ::
4+
5+
aws servicecatalog create-constraint \
6+
--portfolio-id port-y3fnkesxxxxx \
7+
--product-id prod-cfrfxmraxxxxx \
8+
--type LAUNCH \
9+
--parameters '{"RoleArn" : "arn:aws:iam::123456789012:role/LaunchRole"}'
10+
11+
Output::
12+
13+
{
14+
"ConstraintDetail": {
15+
"ConstraintId": "cons-7tr6gei4bxxxx",
16+
"Type": "LAUNCH",
17+
"Owner": "123456789012",
18+
"ProductId": "prod-cfrfxmra3xxxx",
19+
"PortfolioId": "port-y3fnkeslpxxxx"
20+
},
21+
"ConstraintParameters": "{\"RoleArn\" : \"arn:aws:iam::123456789012:role/LaunchRole\"}",
22+
"Status": "CREATING"
23+
}
24+
25+
For more information, see `Using AWS Service Catalog Constraints <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints.html>`__ in the *AWS Service Catalog User Guide*.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
**To create a plan**
2+
3+
The following ``create-provisioned-product-plan`` example creates a plan. ::
4+
5+
aws servicecatalog create-provisioned-product-plan \
6+
--plan-name test-plan \
7+
--plan-type CLOUDFORMATION \
8+
--product-id prod-cfrfxmraxxxxx \
9+
--provisioned-product-name test-pp \
10+
--provisioning-artifact-id pa-7wz4cu5cxxxxx
11+
12+
Output::
13+
14+
{
15+
"PlanName": "test-plan",
16+
"PlanId": "plan-cuxae3z6gxxxx",
17+
"ProvisionProductId": "pp-7kh7wbc4xxxxx",
18+
"ProvisionedProductName": "test-pp",
19+
"ProvisioningArtifactId": "pa-7wz4cu5cxxxxx"
20+
}
21+
22+
For more information, see `Creating a launch plan <https://docs.aws.amazon.com/servicecatalog/latest/userguide/launch-plan.html>`__ in the *AWS Service Catalog User Guide*.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
**To delete a constraint**
2+
3+
The following ``delete-constraint`` example deletes a constraint. ::
4+
5+
aws servicecatalog delete-constraint \
6+
--id cons-7tr6gei4bxxxx
7+
8+
This command produces no output.
9+
10+
For more information, see `Using AWS Service Catalog Constraints <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints.html>`__ in the *AWS Service Catalog User Guide*.
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
**To delete a provisioned product plan**
2+
3+
The following ``delete-provisioned-product-plan`` example deletes a provisioned product plan. ::
4+
5+
aws servicecatalog delete-provisioned-product-plan \
6+
--plan-id plan-cuxae3z6gxxxx
7+
8+
This command produces no output.
9+
10+
For more information, see `Creating a launch plan <https://docs.aws.amazon.com/servicecatalog/latest/userguide/launch-plan.html>`__ in the *AWS Service Catalog User Guide*.
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
**To describe a constraint**
2+
3+
The following ``describe-constraint`` example describes a constraint. ::
4+
5+
aws servicecatalog describe-constraint \
6+
--id "cons-oqp52evr4bxxxx"
7+
8+
Output::
9+
10+
{
11+
"ConstraintDetail": {
12+
"ConstraintId": "cons-7tr6gei4bxxxx",
13+
"Type": "LAUNCH",
14+
"Owner": "123456789012",
15+
"ProductId": "prod-cfrfxmra3xxxx",
16+
"PortfolioId": "port-y3fnkeslpxxxx"
17+
},
18+
"ConstraintParameters": "{\"RoleArn\" : \"arn:aws:iam::123456789012:role/LaunchRole\"}",
19+
"Status": "AVAILABLE"
20+
}
21+
22+
For more information, see `Using AWS Service Catalog Constraints <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/constraints.html>`__ in the *AWS Service Catalog User Guide*.
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
**To describe portfolio share status**
2+
3+
The following ``describe-portfolio-share-status`` example describes portfolio share status. ::
4+
5+
aws servicecatalog describe-portfolio-share-status \
6+
--portfolio-share-token "share-agngcybu4xxxx"
7+
8+
Output::
9+
10+
{
11+
"PortfolioShareToken": "share-agngcybu4xxxx",
12+
"PortfolioId": "port-y3fnkeslxxxxx",
13+
"OrganizationNodeValue": "123456789012",
14+
"Status": "COMPLETED",
15+
"ShareDetails": {
16+
"SuccessfulShares": [
17+
"012345678901"
18+
],
19+
"ShareErrors": []
20+
}
21+
}
22+
23+
For more information, see `Sharing a Portfolio <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/catalogs_portfolios_sharing_how-to-share.html>`__ in the *AWS Service Catalog User Guide*.
Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
**To describe portfolio shares**
2+
3+
The following ``describe-portfolio-shares`` example describes portfolio shares. ::
4+
5+
aws servicecatalog describe-portfolio-shares \
6+
--portfolio-id port-y3fnkeslxxxxx \
7+
--type ACCOUNT
8+
9+
Output::
10+
11+
{
12+
"PortfolioShareDetails": [
13+
{
14+
"PrincipalId": "123456789012",
15+
"Type": "ACCOUNT",
16+
"Accepted": true,
17+
"ShareTagOptions": false,
18+
"SharePrincipals": false
19+
},
20+
{
21+
"PrincipalId": "123456789012",
22+
"Type": "ACCOUNT",
23+
"Accepted": false,
24+
"ShareTagOptions": false,
25+
"SharePrincipals": false
26+
}
27+
]
28+
}
29+
30+
For more information, see `Sharing a Portfolio <https://docs.aws.amazon.com/servicecatalog/latest/adminguide/catalogs_portfolios_sharing_how-to-share.html>`__ in the *AWS Service Catalog User Guide*.

0 commit comments

Comments
 (0)