Show / Hide Table of Contents

Interface ICfnDedicatedIpPoolMixinProps

Properties for CfnDedicatedIpPoolPropsMixin.

Namespace: Amazon.CDK.Mixins.Preview.AWS.SES.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface ICfnDedicatedIpPoolMixinProps
Syntax (vb)
Public Interface ICfnDedicatedIpPoolMixinProps
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-ses-dedicatedippool.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.Mixins.Preview.AWS.SES.Mixins;

             var cfnDedicatedIpPoolMixinProps = new CfnDedicatedIpPoolMixinProps {
                 PoolName = "poolName",
                 ScalingMode = "scalingMode",
                 Tags = new [] { new CfnTag {
                     Key = "key",
                     Value = "value"
                 } }
             };

Synopsis

Properties

PoolName

The name of the dedicated IP pool that the IP address is associated with.

ScalingMode

The type of scaling mode.

Tags

An object that defines the tags (keys and values) that you want to associate with the pool.

Properties

PoolName

The name of the dedicated IP pool that the IP address is associated with.

string? PoolName { get; }
Property Value

string

Remarks

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

ScalingMode

The type of scaling mode.

string? ScalingMode { get; }
Property Value

string

Remarks

The following options are available:

    The STANDARD option is selected by default if no value is specified.

    Updating <em>ScalingMode</em> doesn't require a replacement if you're updating its value from <code>STANDARD</code> to <code>MANAGED</code> . However, updating <em>ScalingMode</em> from <code>MANAGED</code> to <code>STANDARD</code> is not supported.
    

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

    Tags

    An object that defines the tags (keys and values) that you want to associate with the pool.

    ICfnTag[]? Tags { get; }
    Property Value

    ICfnTag[]

    Remarks

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

    Back to top Generated by DocFX