/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents the resources that were scanned in the scan entry.See
* Also:
AWS
* API Reference
InstanceArn that was scanned in the scan entry.
*/ inline const Aws::String& GetInstanceArn() const{ return m_instanceArn; } /** *InstanceArn that was scanned in the scan entry.
*/ inline bool InstanceArnHasBeenSet() const { return m_instanceArnHasBeenSet; } /** *InstanceArn that was scanned in the scan entry.
*/ inline void SetInstanceArn(const Aws::String& value) { m_instanceArnHasBeenSet = true; m_instanceArn = value; } /** *InstanceArn that was scanned in the scan entry.
*/ inline void SetInstanceArn(Aws::String&& value) { m_instanceArnHasBeenSet = true; m_instanceArn = std::move(value); } /** *InstanceArn that was scanned in the scan entry.
*/ inline void SetInstanceArn(const char* value) { m_instanceArnHasBeenSet = true; m_instanceArn.assign(value); } /** *InstanceArn that was scanned in the scan entry.
*/ inline ResourceDetails& WithInstanceArn(const Aws::String& value) { SetInstanceArn(value); return *this;} /** *InstanceArn that was scanned in the scan entry.
*/ inline ResourceDetails& WithInstanceArn(Aws::String&& value) { SetInstanceArn(std::move(value)); return *this;} /** *InstanceArn that was scanned in the scan entry.
*/ inline ResourceDetails& WithInstanceArn(const char* value) { SetInstanceArn(value); return *this;} private: Aws::String m_instanceArn; bool m_instanceArnHasBeenSet = false; }; } // namespace Model } // namespace GuardDuty } // namespace Aws