Show / Hide Table of Contents

Class WebsiteCertificateAuthorityAssociation

Example Usage

using System.IO;
using Pulumi;
using Aws = Pulumi.Aws;

class MyStack : Stack
{
public MyStack()
{
    var example = new Aws.WorkLink.Fleet("example", new Aws.WorkLink.FleetArgs
    {
    });
    var test = new Aws.WorkLink.WebsiteCertificateAuthorityAssociation("test", new Aws.WorkLink.WebsiteCertificateAuthorityAssociationArgs
    {
        Certificate = File.ReadAllText("certificate.pem"),
        FleetArn = aws_worklink_fleet.Test.Arn,
    });
}

}
Inheritance
System.Object
Resource
CustomResource
WebsiteCertificateAuthorityAssociation
Inherited Members
CustomResource.Id
Resource.GetResourceType()
Resource.GetResourceName()
Resource.Urn
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.Aws.WorkLink
Assembly: Pulumi.Aws.dll
Syntax
public class WebsiteCertificateAuthorityAssociation : CustomResource

Constructors

View Source

WebsiteCertificateAuthorityAssociation(String, WebsiteCertificateAuthorityAssociationArgs, CustomResourceOptions)

Create a WebsiteCertificateAuthorityAssociation resource with the given unique name, arguments, and options.

Declaration
public WebsiteCertificateAuthorityAssociation(string name, WebsiteCertificateAuthorityAssociationArgs args, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resource

WebsiteCertificateAuthorityAssociationArgs args

The arguments used to populate this resource's properties

CustomResourceOptions options

A bag of options that control this resource's behavior

Properties

View Source

Certificate

The root certificate of the Certificate Authority.

Declaration
public Output<string> Certificate { get; }
Property Value
Type Description
Output<System.String>
View Source

DisplayName

The certificate name to display.

Declaration
public Output<string> DisplayName { get; }
Property Value
Type Description
Output<System.String>
View Source

FleetArn

The ARN of the fleet.

Declaration
public Output<string> FleetArn { get; }
Property Value
Type Description
Output<System.String>
View Source

WebsiteCaId

A unique identifier for the Certificate Authority.

Declaration
public Output<string> WebsiteCaId { get; }
Property Value
Type Description
Output<System.String>

Methods

View Source

Get(String, Input<String>, WebsiteCertificateAuthorityAssociationState, CustomResourceOptions)

Get an existing WebsiteCertificateAuthorityAssociation resource's state with the given name, ID, and optional extra properties used to qualify the lookup.

Declaration
public static WebsiteCertificateAuthorityAssociation Get(string name, Input<string> id, WebsiteCertificateAuthorityAssociationState state = null, CustomResourceOptions options = null)
Parameters
Type Name Description
System.String name

The unique name of the resulting resource.

Input<System.String> id

The unique provider ID of the resource to lookup.

WebsiteCertificateAuthorityAssociationState state

Any extra arguments used during the lookup.

CustomResourceOptions options

A bag of options that control this resource's behavior

Returns
Type Description
WebsiteCertificateAuthorityAssociation
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.