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,
});
}
}
Inherited Members
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 SourceWebsiteCertificateAuthorityAssociation(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 SourceCertificate
The root certificate of the Certificate Authority.
Declaration
public Output<string> Certificate { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
DisplayName
The certificate name to display.
Declaration
public Output<string> DisplayName { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
FleetArn
The ARN of the fleet.
Declaration
public Output<string> FleetArn { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
WebsiteCaId
A unique identifier for the Certificate Authority.
Declaration
public Output<string> WebsiteCaId { get; }
Property Value
| Type | Description |
|---|---|
| Output<System.String> |
Methods
View SourceGet(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 |