/*
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License").
* You may not use this file except in compliance with the License.
* A copy of the License is located at
*
* http://aws.amazon.com/apache2.0
*
* or in the "license" file accompanying this file. This file is distributed
* on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either
* express or implied. See the License for the specific language governing
* permissions and limitations under the License.
*/
/*
* Do not modify this file. This file is generated from the pinpoint-email-2018-07-26.normal.json service model.
*/
using System;
using System.Collections.Generic;
using System.Xml.Serialization;
using System.Text;
using System.IO;
using System.Net;
using Amazon.Runtime;
using Amazon.Runtime.Internal;
namespace Amazon.PinpointEmail.Model
{
///
/// An object that defines the dimension configuration to use when you send Amazon Pinpoint
/// email events to Amazon CloudWatch.
///
public partial class CloudWatchDimensionConfiguration
{
private string _defaultDimensionValue;
private string _dimensionName;
private DimensionValueSource _dimensionValueSource;
///
/// Gets and sets the property DefaultDimensionValue.
///
/// The default value of the dimension that is published to Amazon CloudWatch if you don't
/// provide the value of the dimension when you send an email. This value has to meet
/// the following criteria:
///
/// -
///
/// It can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes
/// (-).
///
///
-
///
/// It can contain no more than 256 characters.
///
///
///
[AWSProperty(Required=true)]
public string DefaultDimensionValue
{
get { return this._defaultDimensionValue; }
set { this._defaultDimensionValue = value; }
}
// Check to see if DefaultDimensionValue property is set
internal bool IsSetDefaultDimensionValue()
{
return this._defaultDimensionValue != null;
}
///
/// Gets and sets the property DimensionName.
///
/// The name of an Amazon CloudWatch dimension associated with an email sending metric.
/// The name has to meet the following criteria:
///
/// -
///
/// It can only contain ASCII letters (a-z, A-Z), numbers (0-9), underscores (_), or dashes
/// (-).
///
///
-
///
/// It can contain no more than 256 characters.
///
///
///
[AWSProperty(Required=true)]
public string DimensionName
{
get { return this._dimensionName; }
set { this._dimensionName = value; }
}
// Check to see if DimensionName property is set
internal bool IsSetDimensionName()
{
return this._dimensionName != null;
}
///
/// Gets and sets the property DimensionValueSource.
///
/// The location where Amazon Pinpoint finds the value of a dimension to publish to Amazon
/// CloudWatch. If you want Amazon Pinpoint to use the message tags that you specify using
/// an X-SES-MESSAGE-TAGS header or a parameter to the SendEmail/SendRawEmail API, choose
/// messageTag
. If you want Amazon Pinpoint to use your own email headers,
/// choose emailHeader
. If you want Amazon Pinpoint to use link tags, choose
/// linkTags
.
///
///
[AWSProperty(Required=true)]
public DimensionValueSource DimensionValueSource
{
get { return this._dimensionValueSource; }
set { this._dimensionValueSource = value; }
}
// Check to see if DimensionValueSource property is set
internal bool IsSetDimensionValueSource()
{
return this._dimensionValueSource != null;
}
}
}