Class CfnServiceActionProps
Properties for defining a CfnServiceAction.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServiceActionProps : ICfnServiceActionProps
Syntax (vb)
Public Class CfnServiceActionProps Implements ICfnServiceActionProps
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Servicecatalog;
var cfnServiceActionProps = new CfnServiceActionProps {
Definition = new [] { new DefinitionParameterProperty {
Key = "key",
Value = "value"
} },
DefinitionType = "definitionType",
Name = "name",
// the properties below are optional
AcceptLanguage = "acceptLanguage",
Description = "description"
};
Synopsis
Constructors
| CfnServiceActionProps() | Properties for defining a |
Properties
| AcceptLanguage | The language code. |
| Definition | A map that defines the self-service action. |
| DefinitionType | The self-service action definition type. |
| Description | The self-service action description. |
| Name | The self-service action name. |
Constructors
CfnServiceActionProps()
Properties for defining a CfnServiceAction.
public CfnServiceActionProps()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.Servicecatalog;
var cfnServiceActionProps = new CfnServiceActionProps {
Definition = new [] { new DefinitionParameterProperty {
Key = "key",
Value = "value"
} },
DefinitionType = "definitionType",
Name = "name",
// the properties below are optional
AcceptLanguage = "acceptLanguage",
Description = "description"
};
Properties
AcceptLanguage
The language code.
public string? AcceptLanguage { get; set; }
Property Value
Remarks
Definition
A map that defines the self-service action.
public object Definition { get; set; }
Property Value
Remarks
DefinitionType
The self-service action definition type.
public string DefinitionType { get; set; }
Property Value
Remarks
Description
The self-service action description.
public string? Description { get; set; }
Property Value
Remarks
Name
The self-service action name.
public string Name { get; set; }