Show / Hide Table of Contents

Class CfnServiceActionProps

Properties for defining a CfnServiceAction.

Inheritance
object
CfnServiceActionProps
Implements
ICfnServiceActionProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.Servicecatalog
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnServiceActionProps : ICfnServiceActionProps
Syntax (vb)
Public Class CfnServiceActionProps Implements ICfnServiceActionProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html

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 CfnServiceAction.

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

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html

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

string

Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html#cfn-servicecatalog-serviceaction-acceptlanguage

    Definition

    A map that defines the self-service action.

    public object Definition { get; set; }
    Property Value

    object

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html#cfn-servicecatalog-serviceaction-definition

    Type union: either IResolvable or (either IResolvable or CfnServiceAction.IDefinitionParameterProperty)[]

    DefinitionType

    The self-service action definition type.

    public string DefinitionType { get; set; }
    Property Value

    string

    Remarks

    For example, SSM_AUTOMATION .

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html#cfn-servicecatalog-serviceaction-definitiontype

    Description

    The self-service action description.

    public string? Description { get; set; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html#cfn-servicecatalog-serviceaction-description

    Name

    The self-service action name.

    public string Name { get; set; }
    Property Value

    string

    Remarks

    See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-servicecatalog-serviceaction.html#cfn-servicecatalog-serviceaction-name

    Implements

    ICfnServiceActionProps
    Back to top Generated by DocFX