Interface CfnServiceActionProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnServiceActionProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)", date="2023-06-19T16:30:39.774Z") @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();
 
  • Method Details

    • getDefinition

      @Stability(Stable) @NotNull Object getDefinition()
      A map that defines the self-service action.
    • getDefinitionType

      @Stability(Stable) @NotNull String getDefinitionType()
      The self-service action definition type.

      For example, SSM_AUTOMATION .

    • getName

      @Stability(Stable) @NotNull String getName()
      The self-service action name.
    • getAcceptLanguage

      @Stability(Stable) @Nullable default String getAcceptLanguage()
      The language code.

      • en - English (default)
      • jp - Japanese
      • zh - Chinese
    • getDescription

      @Stability(Stable) @Nullable default String getDescription()
      The self-service action description.
    • builder

      @Stability(Stable) static CfnServiceActionProps.Builder builder()
      Returns:
      a CfnServiceActionProps.Builder of CfnServiceActionProps