interface StatusSummaryProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.SSMQuickSetup.Mixins.CfnConfigurationManagerPropsMixin.StatusSummaryProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsssmquicksetup/mixins#CfnConfigurationManagerPropsMixin_StatusSummaryProperty |
Java | software.amazon.awscdk.mixins.preview.services.ssmquicksetup.mixins.CfnConfigurationManagerPropsMixin.StatusSummaryProperty |
Python | aws_cdk.mixins_preview.aws_ssmquicksetup.mixins.CfnConfigurationManagerPropsMixin.StatusSummaryProperty |
TypeScript | @aws-cdk/mixins-preview » aws_ssmquicksetup » mixins » CfnConfigurationManagerPropsMixin » StatusSummaryProperty |
A summarized description of the status.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as ssmquicksetup_mixins } from '@aws-cdk/mixins-preview/aws-ssmquicksetup';
const statusSummaryProperty: ssmquicksetup_mixins.CfnConfigurationManagerPropsMixin.StatusSummaryProperty = {
lastUpdatedAt: 'lastUpdatedAt',
status: 'status',
statusDetails: {
statusDetailsKey: 'statusDetails',
},
statusMessage: 'statusMessage',
statusType: 'statusType',
};
Properties
| Name | Type | Description |
|---|---|---|
| last | string | The datetime stamp when the status was last updated. |
| status? | string | The current status. |
| status | { [string]: string } | IResolvable | Details about the status. |
| status | string | When applicable, returns an informational message relevant to the current status and status type of the status summary object. |
| status | string | The type of a status summary. |
lastUpdatedAt?
Type:
string
(optional)
The datetime stamp when the status was last updated.
status?
Type:
string
(optional)
The current status.
statusDetails?
Type:
{ [string]: string } | IResolvable
(optional)
Details about the status.
statusMessage?
Type:
string
(optional)
When applicable, returns an informational message relevant to the current status and status type of the status summary object.
We don't recommend implementing parsing logic around this value since the messages returned can vary in format.
statusType?
Type:
string
(optional)
The type of a status summary.

.NET
Go
Java
Python
TypeScript