associateProductWithPortfolio method
Associates the specified product with the specified portfolio.
A delegated admin is authorized to invoke this command.
May throw InvalidParametersException.
May throw LimitExceededException.
May throw ResourceNotFoundException.
Parameter portfolioId :
The portfolio identifier.
Parameter productId :
The product identifier.
Parameter acceptLanguage :
The language code.
-
jp- Japanese -
zh- Chinese
Parameter sourcePortfolioId :
The identifier of the source portfolio.
Implementation
Future<void> associateProductWithPortfolio({
required String portfolioId,
required String productId,
String? acceptLanguage,
String? sourcePortfolioId,
}) async {
final headers = <String, String>{
'Content-Type': 'application/x-amz-json-1.1',
'X-Amz-Target':
'AWS242ServiceCatalogService.AssociateProductWithPortfolio'
};
await _protocol.send(
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
// TODO queryParams
headers: headers,
payload: {
'PortfolioId': portfolioId,
'ProductId': productId,
if (acceptLanguage != null) 'AcceptLanguage': acceptLanguage,
if (sourcePortfolioId != null) 'SourcePortfolioId': sourcePortfolioId,
},
);
}