Interface CfnServiceActionMixinProps
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnServiceActionMixinProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.127.0 (build 2117ad5)",
date="2026-03-11T13:20:05.456Z")
@Stability(Stable)
public interface CfnServiceActionMixinProps
extends software.amazon.jsii.JsiiSerializable
Properties for CfnServiceActionPropsMixin.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.cfnpropertymixins.services.servicecatalog.*;
CfnServiceActionMixinProps cfnServiceActionMixinProps = CfnServiceActionMixinProps.builder()
.acceptLanguage("acceptLanguage")
.definition(List.of(DefinitionParameterProperty.builder()
.key("key")
.value("value")
.build()))
.definitionType("definitionType")
.description("description")
.name("name")
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnServiceActionMixinPropsstatic final classAn implementation forCfnServiceActionMixinProps -
Method Summary
Modifier and TypeMethodDescriptionbuilder()default StringThe language code.default ObjectA map that defines the self-service action.default StringThe self-service action definition type.default StringThe self-service action description.default StringgetName()The self-service action name.Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getAcceptLanguage
The language code.en- English (default)jp- Japanesezh- Chinese
- See Also:
-
getDefinition
A map that defines the self-service action.Returns union: either
IResolvableor Listinvalid input: '<'eitherIResolvableorCfnServiceActionPropsMixin.DefinitionParameterProperty>- See Also:
-
getDefinitionType
The self-service action definition type.For example,
SSM_AUTOMATION.- See Also:
-
getDescription
The self-service action description.- See Also:
-
getName
The self-service action name.- See Also:
-
builder
- Returns:
- a
CfnServiceActionMixinProps.BuilderofCfnServiceActionMixinProps
-