AWS Glue Ml Transform

This page shows how to write Terraform and CloudFormation for AWS Glue Ml Transform and write them securely.

aws_glue_ml_transform (Terraform)

The Ml Transform in AWS Glue can be configured in Terraform with the resource name aws_glue_ml_transform. The following sections describe how to use the resource and its parameters.

Example Usage from GitHub

An example could not be found in GitHub.

Review your Terraform file for AWS best practices

Shisho Cloud, our free checker to make sure your Terraform configuration follows best practices, is available (beta).

Parameters

Explanation in Terraform Registry

Provides a Glue ML Transform resource.

AWS::Glue::MLTransform (CloudFormation)

The MLTransform in Glue can be configured in CloudFormation with the resource name AWS::Glue::MLTransform. The following sections describe 10 examples of how to use the resource and its parameters.

Example Usage from GitHub

aws-glue-mltransform.yaml#L27
    Type: AWS::Glue::MLTransform
    Properties:
      Name: !Ref name
      Role: !Ref role
      InputRecordTables:
      - GlueTables:
product.template-us-east-2.yaml#L12
    Type: AWS::Glue::MLTransform
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html
    Properties:
      Role: !Ref 'Role'
      TransformParameters:
        TransformType: !Ref 'TransformParametersTransformType'
product.template-ap-south-1.yaml#L12
    Type: AWS::Glue::MLTransform
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html
    Properties:
      Role: !Ref 'Role'
      TransformParameters:
        TransformType: !Ref 'TransformParametersTransformType'
product.template-ap-southeast-1.yaml#L12
    Type: AWS::Glue::MLTransform
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html
    Properties:
      Role: !Ref 'Role'
      TransformParameters:
        TransformType: !Ref 'TransformParametersTransformType'
product.template-ap-northeast-2.yaml#L12
    Type: AWS::Glue::MLTransform
    Description: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-glue-mltransform.html
    Properties:
      Role: !Ref 'Role'
      TransformParameters:
        TransformType: !Ref 'TransformParametersTransformType'
aws_glue.json#L89
    "path": "/ResourceTypes/AWS::Glue::MLTransform/Properties/MaxCapacity/Value",
    "value": {
      "ValueType": "AWS::Glue::MLTransform.MaxCapacity"
    }
  }
]
aws_glue.json#L89
    "path": "/ResourceTypes/AWS::Glue::MLTransform/Properties/MaxCapacity/Value",
    "value": {
      "ValueType": "AWS::Glue::MLTransform.MaxCapacity"
    }
  }
]
GlueMLTransformSpecification.json#L3
    "AWS::Glue::MLTransform.TransformParameters": {
      "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html",
      "Properties": {
        "TransformType": {
          "Required": true,
          "Documentation": "http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-glue-mltransform-transformparameters.html#cfn-glue-mltransform-transformparameters-transformtype",
template.json#L1459
    "AWS::Glue::MLTransform": {
      "Type": "AWS::Glue::MLTransform",
      "Properties": {}
    },
    "AWS::Kendra::DataSource": {
      "Type": "AWS::Kendra::DataSource",
awsResouceIconMatches.json#L1366
        "resourceType": "AWS::Glue::MLTransform",
        "filePath": null
      },
      {
        "resourceType": "AWS::Glue::Classifier",
        "filePath": null

Parameters

Explanation in CloudFormation Registry

The AWS::Glue::MLTransform is an AWS Glue resource type that manages machine learning transforms.

Frequently asked questions

What is AWS Glue Ml Transform?

AWS Glue Ml Transform is a resource for Glue of Amazon Web Service. Settings can be wrote in Terraform and CloudFormation.

Where can I find the example code for the AWS Glue Ml Transform?

For CloudFormation, the rubyonrails3/cfn-rules, awslabs/aws-service-catalog-products and awslabs/aws-service-catalog-products source code examples are useful. See the CloudFormation Example section for further details.