interface CfnServiceActionMixinProps
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.ServiceCatalog.Mixins.CfnServiceActionMixinProps |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsservicecatalog/mixins#CfnServiceActionMixinProps |
Java | software.amazon.awscdk.mixins.preview.services.servicecatalog.mixins.CfnServiceActionMixinProps |
Python | aws_cdk.mixins_preview.aws_servicecatalog.mixins.CfnServiceActionMixinProps |
TypeScript | @aws-cdk/mixins-preview » aws_servicecatalog » mixins » CfnServiceActionMixinProps |
Properties for CfnServiceActionPropsMixin.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as servicecatalog_mixins } from '@aws-cdk/mixins-preview/aws-servicecatalog';
const cfnServiceActionMixinProps: servicecatalog_mixins.CfnServiceActionMixinProps = {
acceptLanguage: 'acceptLanguage',
definition: [{
key: 'key',
value: 'value',
}],
definitionType: 'definitionType',
description: 'description',
name: 'name',
};
Properties
| Name | Type | Description |
|---|---|---|
| accept | string | The language code. |
| definition? | IResolvable | (IResolvable | Definition)[] | A map that defines the self-service action. |
| definition | string | The self-service action definition type. |
| description? | string | The self-service action description. |
| name? | string | The self-service action name. |
acceptLanguage?
Type:
string
(optional)
The language code.
en- English (default)jp- Japanesezh- Chinese
definition?
Type:
IResolvable | (IResolvable | Definition)[]
(optional)
A map that defines the self-service action.
definitionType?
Type:
string
(optional)
The self-service action definition type.
For example, SSM_AUTOMATION .
description?
Type:
string
(optional)
The self-service action description.
name?
Type:
string
(optional)
The self-service action name.

.NET
Go
Java
Python
TypeScript