interface CfnServiceActionProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.ServiceCatalog.CfnServiceActionProps | 
|  Java | software.amazon.awscdk.services.servicecatalog.CfnServiceActionProps | 
|  Python | aws_cdk.aws_servicecatalog.CfnServiceActionProps | 
|  TypeScript | @aws-cdk/aws-servicecatalog»CfnServiceActionProps | 
Properties for defining a CfnServiceAction.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as servicecatalog from '@aws-cdk/aws-servicecatalog';
const cfnServiceActionProps: servicecatalog.CfnServiceActionProps = {
  definition: [{
    key: 'key',
    value: 'value',
  }],
  definitionType: 'definitionType',
  name: 'name',
  // the properties below are optional
  acceptLanguage: 'acceptLanguage',
  description: 'description',
};
Properties
| Name | Type | Description | 
|---|---|---|
| definition | IResolvable | IResolvable | Definition[] | A map that defines the self-service action. | 
| definition | string | The self-service action definition type. | 
| name | string | The self-service action name. | 
| accept | string | The language code. | 
| description? | string | The self-service action description. | 
definition
Type:
IResolvable | IResolvable | Definition[]
A map that defines the self-service action.
definitionType
Type:
string
The self-service action definition type.
For example, SSM_AUTOMATION .
name
Type:
string
The self-service action name.
acceptLanguage?
Type:
string
(optional)
The language code.
- en- English (default)
- jp- Japanese
- zh- Chinese
description?
Type:
string
(optional)
The self-service action description.
