// Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.\r
// SPDX-License-Identifier: Apache-2.0
using AWS.Deploy.Common.Recipes;
namespace AWS.Deploy.Common.TypeHintData
{
///
/// Holds additional data for processing.
///
public class IAMRoleTypeHintData
{
///
/// ServicePrincipal to filter IAM roles.
///
public string ServicePrincipal { get; set; }
public IAMRoleTypeHintData(string servicePrincipal)
{
ServicePrincipal = servicePrincipal;
}
}
}