interface SparkEmrPropertiesInputProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.DataZone.CfnConnection.SparkEmrPropertiesInputProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsdatazone#CfnConnection_SparkEmrPropertiesInputProperty |
Java | software.amazon.awscdk.services.datazone.CfnConnection.SparkEmrPropertiesInputProperty |
Python | aws_cdk.aws_datazone.CfnConnection.SparkEmrPropertiesInputProperty |
TypeScript | aws-cdk-lib » aws_datazone » CfnConnection » SparkEmrPropertiesInputProperty |
The Spark EMR properties.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_datazone as datazone } from 'aws-cdk-lib';
const sparkEmrPropertiesInputProperty: datazone.CfnConnection.SparkEmrPropertiesInputProperty = {
computeArn: 'computeArn',
instanceProfileArn: 'instanceProfileArn',
javaVirtualEnv: 'javaVirtualEnv',
logUri: 'logUri',
managedEndpointArn: 'managedEndpointArn',
pythonVirtualEnv: 'pythonVirtualEnv',
runtimeRole: 'runtimeRole',
trustedCertificatesS3Uri: 'trustedCertificatesS3Uri',
};
Properties
| Name | Type | Description |
|---|---|---|
| compute | string | The compute ARN of Spark EMR. |
| instance | string | The instance profile ARN of Spark EMR. |
| java | string | The java virtual env of the Spark EMR. |
| log | string | The log URI of the Spark EMR. |
| managed | string | |
| python | string | The Python virtual env of the Spark EMR. |
| runtime | string | The runtime role of the Spark EMR. |
| trusted | string | The certificates S3 URI of the Spark EMR. |
computeArn?
Type:
string
(optional)
The compute ARN of Spark EMR.
instanceProfileArn?
Type:
string
(optional)
The instance profile ARN of Spark EMR.
javaVirtualEnv?
Type:
string
(optional)
The java virtual env of the Spark EMR.
logUri?
Type:
string
(optional)
The log URI of the Spark EMR.
managedEndpointArn?
Type:
string
(optional)
pythonVirtualEnv?
Type:
string
(optional)
The Python virtual env of the Spark EMR.
runtimeRole?
Type:
string
(optional)
The runtime role of the Spark EMR.
trustedCertificatesS3Uri?
Type:
string
(optional)
The certificates S3 URI of the Spark EMR.

.NET
Go
Java
Python
TypeScript