Interface CfnServiceActionProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceActionProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-22T02:24:09.625Z")
@Stability(Stable)
public interface CfnServiceActionProps
extends software.amazon.jsii.JsiiSerializable
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 software.amazon.awscdk.services.servicecatalog.*; CfnServiceActionProps cfnServiceActionProps = CfnServiceActionProps.builder() .definition(List.of(DefinitionParameterProperty.builder() .key("key") .value("value") .build())) .definitionType("definitionType") .name("name") // the properties below are optional .acceptLanguage("acceptLanguage") .description("description") .build();
- See Also:
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forCfnServiceActionProps
static final class
An implementation forCfnServiceActionProps
-
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getDefinition
A map that defines the self-service action.- See Also:
-
getDefinitionType
The self-service action definition type.For example,
SSM_AUTOMATION
.- See Also:
-
getName
The self-service action name.- See Also:
-
getAcceptLanguage
The language code.en
- English (default)jp
- Japanesezh
- Chinese
- See Also:
-
getDescription
The self-service action description.- See Also:
-
builder
- Returns:
- a
CfnServiceActionProps.Builder
ofCfnServiceActionProps
-