The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

Paws::LexModels::CreateSlotTypeVersion - Arguments for method CreateSlotTypeVersion on Paws::LexModels

DESCRIPTION

This class represents the parameters used for calling the method CreateSlotTypeVersion on the Amazon Lex Model Building Service service. Use the attributes of this class as arguments to method CreateSlotTypeVersion.

You shouldn't make instances of this class. Each attribute should be used as a named argument in the call to CreateSlotTypeVersion.

SYNOPSIS

    my $models.lex = Paws->service('LexModels');
    my $CreateSlotTypeVersionResponse = $models . lex->CreateSlotTypeVersion(
      Name     => 'MySlotTypeName',
      Checksum => 'MyString',         # OPTIONAL
    );

    # Results:
    my $Checksum          = $CreateSlotTypeVersionResponse->Checksum;
    my $CreatedDate       = $CreateSlotTypeVersionResponse->CreatedDate;
    my $Description       = $CreateSlotTypeVersionResponse->Description;
    my $EnumerationValues = $CreateSlotTypeVersionResponse->EnumerationValues;
    my $LastUpdatedDate   = $CreateSlotTypeVersionResponse->LastUpdatedDate;
    my $Name              = $CreateSlotTypeVersionResponse->Name;
    my $ParentSlotTypeSignature =
      $CreateSlotTypeVersionResponse->ParentSlotTypeSignature;
    my $SlotTypeConfigurations =
      $CreateSlotTypeVersionResponse->SlotTypeConfigurations;
    my $ValueSelectionStrategy =
      $CreateSlotTypeVersionResponse->ValueSelectionStrategy;
    my $Version = $CreateSlotTypeVersionResponse->Version;

    # Returns a L<Paws::LexModels::CreateSlotTypeVersionResponse> object.

Values for attributes that are native types (Int, String, Float, etc) can passed as-is (scalar values). Values for complex Types (objects) can be passed as a HashRef. The keys and values of the hashref will be used to instance the underlying object. For the AWS API documentation, see https://docs.aws.amazon.com/goto/WebAPI/models.lex/CreateSlotTypeVersion

ATTRIBUTES

Checksum => Str

Checksum for the $LATEST version of the slot type that you want to publish. If you specify a checksum and the $LATEST version of the slot type has a different checksum, Amazon Lex returns a PreconditionFailedException exception and doesn't publish the new version. If you don't specify a checksum, Amazon Lex publishes the $LATEST version.

REQUIRED Name => Str

The name of the slot type that you want to create a new version for. The name is case sensitive.

SEE ALSO

This class forms part of Paws, documenting arguments for method CreateSlotTypeVersion in Paws::LexModels

BUGS and CONTRIBUTIONS

The source code is located here: https://github.com/pplu/aws-sdk-perl

Please report bugs to: https://github.com/pplu/aws-sdk-perl/issues