describeStackSet method
Returns the description of the specified stack set.
May throw StackSetNotFoundException.
Parameter stackSetName
:
The name or unique ID of the stack set whose description you want.
Implementation
Future<DescribeStackSetOutput> describeStackSet({
required String stackSetName,
}) async {
ArgumentError.checkNotNull(stackSetName, 'stackSetName');
final $request = <String, dynamic>{};
$request['StackSetName'] = stackSetName;
final $result = await _protocol.send(
$request,
action: 'DescribeStackSet',
version: '2010-05-15',
method: 'POST',
requestUri: '/',
exceptionFnMap: _exceptionFns,
shape: shapes['DescribeStackSetInput'],
shapes: shapes,
resultWrapper: 'DescribeStackSetResult',
);
return DescribeStackSetOutput.fromXml($result);
}