AWS Fundamentals Logo
AWS Fundamentals
AWS::EMRContainers::Endpoint

EMRContainers Endpoint

Resource Schema of AWS::EMRContainers::Endpoint Type

Properties

7 configurable properties. 4 required. Click a row to see details.

Filter:
PropertyTypeFlags
ExecutionRoleArn
string
RequiredCreate-only
ReleaseLabel
string
RequiredCreate-only
Type
string
RequiredCreate-only
VirtualClusterId
string
RequiredCreate-only
ConfigurationOverrides
ConfigurationOverrides
Create-only
Name
string
Create-only
Tags
Array<Tag>

Return Values

Values returned after the resource is created. Access these with Fn::GetAtt.

AttributeTypeDescription
ArnstringThe ARN of the managed endpoint.
CertificateAuthorityCertificateThe certificate authority for the managed endpoint.
CreatedAtstringThe date and time when the managed endpoint was created.
FailureReasonstringThe reason for a failed managed endpoint.
IdstringThe ID of the managed endpoint.
SecurityGroupstringThe security group associated with the managed endpoint.
ServerUrlstringThe server URL of the managed endpoint.
StatestringThe state of the managed endpoint.
StateDetailsstringAdditional details about the state of the managed endpoint.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::EMRContainers::Endpoint

Resources:
  MyResource:
    Type: AWS::EMRContainers::Endpoint
    Properties:
      VirtualClusterId: "my-virtualclusterid"
      Type: "value"
      ReleaseLabel: "value"
      ExecutionRoleArn: "arn:aws:service:region:account:resource"
      Tags:
        - Key: Environment
          Value: Production
      Name: !Ref "AWS::StackName"

Required IAM Permissions

Permissions CloudFormation needs in your IAM role to manage this resource.

create

emr-containers:CreateManagedEndpointemr-containers:DescribeManagedEndpointemr-containers:TagResourceec2:CreateSecurityGroupec2:DeleteSecurityGroupec2:AuthorizeSecurityGroupEgressec2:AuthorizeSecurityGroupIngressec2:RevokeSecurityGroupEgress

read

emr-containers:DescribeManagedEndpointemr-containers:ListTagsForResource

delete

emr-containers:DeleteManagedEndpointemr-containers:DescribeManagedEndpointec2:DeleteSecurityGroupec2:DescribeSecurityGroupec2:DescribeNetworkInterfacesec2:DeleteNetworkInterfaceec2:AuthorizeSecurityGroupEgressec2:AuthorizeSecurityGroupIngress

list

emr-containers:ListManagedEndpoints

update

emr-containers:DescribeManagedEndpointemr-containers:ListTagsForResourceemr-containers:TagResourceemr-containers:UntagResource

Learn AWS the Practical Way

Our bi-weekly newsletter teaches hands-on AWS fundamentals. No certification fluff - just practical knowledge.

Subscribe to Newsletter

Quick Facts

ServiceEMRContainers
Properties16
Required4
TaggingSupported
Primary IDArn

Supported Operations

CreateReadDeleteListUpdate

Immutable After Creation

These properties cannot be changed after the resource is created. Updating them triggers a replacement.

NameVirtualClusterIdTypeReleaseLabelExecutionRoleArnConfigurationOverrides

External Links