AWS Fundamentals Logo
AWS Fundamentals
AWS::Transfer::Certificate

Transfer Certificate

Resource Type definition for AWS::Transfer::Certificate

Properties

8 configurable properties. 2 required. Click a row to see details.

Filter:
PropertyTypeFlags
Certificate
string
RequiredCreate-only
Usage
string
Required
ActiveDate
string
CertificateChain
string
Create-only
Description
string
InactiveDate
string
PrivateKey
string
Create-onlyWrite-only
Tags
Array<Tag>

Return Values

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

AttributeTypeDescription
ArnstringSpecifies the unique Amazon Resource Name (ARN) for the agreement.
CertificateIdstringA unique identifier for the certificate.
NotAfterDatestringSpecifies the not after date for the certificate.
NotBeforeDatestringSpecifies the not before date for the certificate.
SerialstringSpecifies Certificate's serial.
StatusstringA status description for the certificate.
TypestringDescribing the type of certificate. With or without a private key.

Sample CloudFormation Template

A minimal template with required properties and common optional ones.

template.yaml
AWSTemplateFormatVersion: "2010-09-09"
Description: Sample template for AWS::Transfer::Certificate

Resources:
  MyResource:
    Type: AWS::Transfer::Certificate
    Properties:
      Certificate: "value"
      Usage: "SIGNING"
      Tags:
        - Key: Environment
          Value: Production
      Description: !Ref "AWS::StackName"

Required IAM Permissions

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

create

transfer:ImportCertificatetransfer:TagResource

read

transfer:DescribeCertificate

update

transfer:UpdateCertificatetransfer:UnTagResourcetransfer:TagResource

delete

transfer:DeleteCertificate

list

transfer:ListCertificates

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

ServiceTransfer
Properties15
Required2
TaggingSupported
Primary IDCertificateId

Supported Operations

CreateReadUpdateDeleteList

Immutable After Creation

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

CertificateCertificateChainPrivateKey

External Links