Show / Hide Table of Contents

Class CfnTenantProps

Properties for defining a CfnTenant.

Inheritance
object
CfnTenantProps
Implements
ICfnTenantProps
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.SES
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTenantProps : ICfnTenantProps
Syntax (vb)
Public Class CfnTenantProps Implements ICfnTenantProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var cfnTenantProps = new CfnTenantProps {
                 TenantName = "tenantName",

                 // the properties below are optional
                 ResourceAssociations = new [] { new ResourceAssociationProperty {
                     ResourceArn = "resourceArn"
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Constructors

CfnTenantProps()

Properties for defining a CfnTenant.

Properties

ResourceAssociations

The list of resources to associate with the tenant.

Tags

The tags (keys and values) associated with the tenant.

TenantName

The name of the tenant.

Constructors

CfnTenantProps()

Properties for defining a CfnTenant.

public CfnTenantProps()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.AWS.SES;

             var cfnTenantProps = new CfnTenantProps {
                 TenantName = "tenantName",

                 // the properties below are optional
                 ResourceAssociations = new [] { new ResourceAssociationProperty {
                     ResourceArn = "resourceArn"
                 } },
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Properties

ResourceAssociations

The list of resources to associate with the tenant.

public object? ResourceAssociations { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#cfn-ses-tenant-resourceassociations

Type union: either IResolvable or (either IResolvable or CfnTenant.IResourceAssociationProperty)[]

Tags

The tags (keys and values) associated with the tenant.

public ICfnTag[]? Tags { get; set; }
Property Value

ICfnTag[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#cfn-ses-tenant-tags

TenantName

The name of the tenant.

public string TenantName { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-tenant.html#cfn-ses-tenant-tenantname

Implements

ICfnTenantProps
Back to top Generated by DocFX