24 lines
414 B
C
24 lines
414 B
C
|
|
/**
|
|||
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|||
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|||
|
|
*/
|
|||
|
|
|
|||
|
|
#pragma once
|
|||
|
|
#include <cstddef>
|
|||
|
|
#include <aws/sts/STS_EXPORTS.h>
|
|||
|
|
|
|||
|
|
namespace Aws
|
|||
|
|
{
|
|||
|
|
namespace STS
|
|||
|
|
{
|
|||
|
|
class STSEndpointRules
|
|||
|
|
{
|
|||
|
|
public:
|
|||
|
|
static const size_t RulesBlobStrLen;
|
|||
|
|
static const size_t RulesBlobSize;
|
|||
|
|
|
|||
|
|
static const char* GetRulesBlob();
|
|||
|
|
};
|
|||
|
|
} // namespace STS
|
|||
|
|
} // namespace Aws
|