1. Packages
  2. AWS
  3. API Docs
  4. rds
  5. getCertificate
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

aws.rds.getCertificate

Explore with Pulumi AI

AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi

Information about an RDS Certificate.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const example = aws.rds.getCertificate({
    latestValidTill: true,
});
Copy
import pulumi
import pulumi_aws as aws

example = aws.rds.get_certificate(latest_valid_till=True)
Copy
package main

import (
	"github.com/pulumi/pulumi-aws/sdk/v6/go/aws/rds"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := rds.LookupCertificate(ctx, &rds.LookupCertificateArgs{
			LatestValidTill: pulumi.BoolRef(true),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Aws = Pulumi.Aws;

return await Deployment.RunAsync(() => 
{
    var example = Aws.Rds.GetCertificate.Invoke(new()
    {
        LatestValidTill = true,
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.aws.rds.RdsFunctions;
import com.pulumi.aws.rds.inputs.GetCertificateArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var example = RdsFunctions.getCertificate(GetCertificateArgs.builder()
            .latestValidTill(true)
            .build());

    }
}
Copy
variables:
  example:
    fn::invoke:
      function: aws:rds:getCertificate
      arguments:
        latestValidTill: true
Copy

Using getCertificate

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getCertificate(args: GetCertificateArgs, opts?: InvokeOptions): Promise<GetCertificateResult>
function getCertificateOutput(args: GetCertificateOutputArgs, opts?: InvokeOptions): Output<GetCertificateResult>
Copy
def get_certificate(default_for_new_launches: Optional[bool] = None,
                    id: Optional[str] = None,
                    latest_valid_till: Optional[bool] = None,
                    opts: Optional[InvokeOptions] = None) -> GetCertificateResult
def get_certificate_output(default_for_new_launches: Optional[pulumi.Input[bool]] = None,
                    id: Optional[pulumi.Input[str]] = None,
                    latest_valid_till: Optional[pulumi.Input[bool]] = None,
                    opts: Optional[InvokeOptions] = None) -> Output[GetCertificateResult]
Copy
func LookupCertificate(ctx *Context, args *LookupCertificateArgs, opts ...InvokeOption) (*LookupCertificateResult, error)
func LookupCertificateOutput(ctx *Context, args *LookupCertificateOutputArgs, opts ...InvokeOption) LookupCertificateResultOutput
Copy

> Note: This function is named LookupCertificate in the Go SDK.

public static class GetCertificate 
{
    public static Task<GetCertificateResult> InvokeAsync(GetCertificateArgs args, InvokeOptions? opts = null)
    public static Output<GetCertificateResult> Invoke(GetCertificateInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetCertificateResult> getCertificate(GetCertificateArgs args, InvokeOptions options)
public static Output<GetCertificateResult> getCertificate(GetCertificateArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: aws:rds/getCertificate:getCertificate
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

DefaultForNewLaunches bool
When enabled, returns the default certificate for new RDS instances.
Id string
Certificate identifier. For example, rds-ca-2019.
LatestValidTill bool
When enabled, returns the certificate with the latest ValidTill.
DefaultForNewLaunches bool
When enabled, returns the default certificate for new RDS instances.
Id string
Certificate identifier. For example, rds-ca-2019.
LatestValidTill bool
When enabled, returns the certificate with the latest ValidTill.
defaultForNewLaunches Boolean
When enabled, returns the default certificate for new RDS instances.
id String
Certificate identifier. For example, rds-ca-2019.
latestValidTill Boolean
When enabled, returns the certificate with the latest ValidTill.
defaultForNewLaunches boolean
When enabled, returns the default certificate for new RDS instances.
id string
Certificate identifier. For example, rds-ca-2019.
latestValidTill boolean
When enabled, returns the certificate with the latest ValidTill.
default_for_new_launches bool
When enabled, returns the default certificate for new RDS instances.
id str
Certificate identifier. For example, rds-ca-2019.
latest_valid_till bool
When enabled, returns the certificate with the latest ValidTill.
defaultForNewLaunches Boolean
When enabled, returns the default certificate for new RDS instances.
id String
Certificate identifier. For example, rds-ca-2019.
latestValidTill Boolean
When enabled, returns the certificate with the latest ValidTill.

getCertificate Result

The following output properties are available:

Arn string
ARN of the certificate.
CertificateType string
Type of certificate. For example, CA.
CustomerOverride bool
Boolean whether there is an override for the default certificate identifier.
CustomerOverrideValidTill string
If there is an override for the default certificate identifier, when the override expires.
Id string
Thumbprint string
Thumbprint of the certificate.
ValidFrom string
RFC3339 format of certificate starting validity date.
ValidTill string
RFC3339 format of certificate ending validity date.
DefaultForNewLaunches bool
LatestValidTill bool
Arn string
ARN of the certificate.
CertificateType string
Type of certificate. For example, CA.
CustomerOverride bool
Boolean whether there is an override for the default certificate identifier.
CustomerOverrideValidTill string
If there is an override for the default certificate identifier, when the override expires.
Id string
Thumbprint string
Thumbprint of the certificate.
ValidFrom string
RFC3339 format of certificate starting validity date.
ValidTill string
RFC3339 format of certificate ending validity date.
DefaultForNewLaunches bool
LatestValidTill bool
arn String
ARN of the certificate.
certificateType String
Type of certificate. For example, CA.
customerOverride Boolean
Boolean whether there is an override for the default certificate identifier.
customerOverrideValidTill String
If there is an override for the default certificate identifier, when the override expires.
id String
thumbprint String
Thumbprint of the certificate.
validFrom String
RFC3339 format of certificate starting validity date.
validTill String
RFC3339 format of certificate ending validity date.
defaultForNewLaunches Boolean
latestValidTill Boolean
arn string
ARN of the certificate.
certificateType string
Type of certificate. For example, CA.
customerOverride boolean
Boolean whether there is an override for the default certificate identifier.
customerOverrideValidTill string
If there is an override for the default certificate identifier, when the override expires.
id string
thumbprint string
Thumbprint of the certificate.
validFrom string
RFC3339 format of certificate starting validity date.
validTill string
RFC3339 format of certificate ending validity date.
defaultForNewLaunches boolean
latestValidTill boolean
arn str
ARN of the certificate.
certificate_type str
Type of certificate. For example, CA.
customer_override bool
Boolean whether there is an override for the default certificate identifier.
customer_override_valid_till str
If there is an override for the default certificate identifier, when the override expires.
id str
thumbprint str
Thumbprint of the certificate.
valid_from str
RFC3339 format of certificate starting validity date.
valid_till str
RFC3339 format of certificate ending validity date.
default_for_new_launches bool
latest_valid_till bool
arn String
ARN of the certificate.
certificateType String
Type of certificate. For example, CA.
customerOverride Boolean
Boolean whether there is an override for the default certificate identifier.
customerOverrideValidTill String
If there is an override for the default certificate identifier, when the override expires.
id String
thumbprint String
Thumbprint of the certificate.
validFrom String
RFC3339 format of certificate starting validity date.
validTill String
RFC3339 format of certificate ending validity date.
defaultForNewLaunches Boolean
latestValidTill Boolean

Package Details

Repository
AWS Classic pulumi/pulumi-aws
License
Apache-2.0
Notes
This Pulumi package is based on the aws Terraform Provider.
AWS v6.77.0 published on Wednesday, Apr 9, 2025 by Pulumi